ichimoku cloud

#1
Hi,
Current Candle Close > Close of 10 (Intraday) Previous Candles and Current candle close should be above cloud and chikou also above the cloud. (Ichimoku reference)
When click on explore it should give me a list of script in a tabular form stating different timeframe for all intraday script.
 
#2
Code:
_SECTION_BEGIN("Ichimoku");
prds = Param( "Standard Line Periods", 9,1,200,1);
turn = Param( "Turning Line Periods", 26,1,400,1 );
delay = Param( "Delayed Line Periods", 26,1,400,1);
span = Param( "Spans Periods", 52,1,600,1);


 
TL = ( HHV( H, turn ) + LLV( L, turn ) ) / 2;
SL = ( HHV( H, prds ) + LLV( L, prds ) ) / 2;
DL = Ref( C, delay );
Sp1 = ( SL + TL ) / 2;
Sp2 = ( HHV( H, span ) + LLV( L, span ) ) / 2;

_N( Title = StrFormat( "{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) Vol " + WriteVal( V, 1.0 ) + " {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ) );

Plot( C, "Close", colorDefault, styleNoTitle | GetPriceStyle() );
Plot( SL, "SL", colorRed, styleThick | styleNoLabel );
Plot( TL, "TL", colorGreen, styleThick | styleNoLabel );
color = IIf( Sp1 > Sp2, ParamColor( "Span1 Color", ColorRGB( 0, 255, 0 ) ), ParamColor( "Span2 Color", ColorRGB( 255, 104, 32 ) ) );
PlotOHLC ( Sp1, Sp1, Sp2, Sp2, "Cloud", Color, styleCloud | styleNoLabel, Null, Null, delay, -2 );
_SECTION_END();
 

Similar threads