Ichimokuzone
Click the file above to Download.
NOTE: For easy import into your charts, save to some where that you will be able to remember, for example your computer's desktop. Be sure to save using .alt as the file extension.
Copy to Clipboard local vtl=ICH_TL[0](Close, 26, 9, 26, 26, 52, -2) local vsp1=ICH_SPAN1[0](Close, 26, 9, 26, 26, 52, -2) local vsp2=ICH_SPAN2[0](Close, 26, 9, 26, 26, 52, -2) local highcloud=max(vsp1,vsp2) local lowcloud=min(vsp1,vsp2) if crossdown(vtl,lowcloud)then addsellentry endif if crossup(vtl,highcloud)then addbuyentry endif if isBuyPosition() and crossdown(close, highcloud) then addbuyexit endif if isSellPosition() and crossup(close, lowcloud) then addsellexit endif
Enlarge Chart