Funster wrote:
"Probably the simple answer is to (eg for RSI) plot 2 RSI indicators on top of each other. Instead of the CLOSE plot one with the HIGH and plot the other with the LOW. Then you can see if your signal levels are hit intra-bar.
Alternatively the following converted indicator code should plot the high and low as such:
Inputs: Length(14), BuyZone(30), SellZone(70);
Plot1(RSI(High, Length), "HRSI");
Plot2(RSI(Low, Length), "LRSI");
Plot3(BuyZone, "BuyZone");
Plot4(SellZone, "SellZone");
end;
Don't forget to go to properties - chart style and change the "Type" of HRSI and LRSI to "Bar High" and "Bar Low" respectively before saving. Et voila - an RSI bar chart!
Also this technique should work for your MAs and MACD, with a bit of basic fiddling about with easylanguage. Note, though, that there is a limit of 4 plots in any one indicator - so your MACD might actually have to be 2 different indicators on top of each other to get the 6 plots you need."
I'm not sure if I understand you correctly.
I went in my TS6 and looked under teh RSI code and it said teh following(how am I suppose to modify it so that it will plot the high,low,or close) (I'm NEW to EasyLanguage):
inputs:
Price( Close ),
Length( 14 ),
OverSold( 30 ),
OverBought( 70 ),
OverSColor( Cyan ),
OverBColor( Red ) ;
Plot1( RSI( Price, Length ), "RSI" ) ;
Plot2( OverSold, "OverSld" ) ;
Plot3( OverBought, "OverBot" ) ;
{ Color criteria }
if Plot1 > OverBought then
SetPlotColor( 1, OverBColor )
else if Plot1 < OverSold then
SetPlotColor( 1, OverSColor ) ;
{ Alert criteria }
if Plot1 crosses over OverSold then
Alert( "Indicator exiting oversold zone" )
else if Plot1 crosses under OverBought then
Alert( "Indicator exiting overbought zone" ) ;
{ ** Copyright (c) 1991-2001 TradeStation Technologies, Inc. All rights reserved. ** }
thanks,
trader99