Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Study Ichimoku Cloud //
- Inputs: Standard(26), Turning(9), Delayed(52), Uscita(0), mystop(0), myprofit(0);
- Variables:StdLine(0), TurnLine(0), Span1(0), Span2(0);
- StdLine = (Highest(High, Standard) + Lowest(Low, Standard)) / 2;
- TurnLine = (Highest(High, Turning) + Lowest(Low, Turning)) / 2;
- Span1 = (StdLine + TurnLine) / 2;
- Span2 = (Highest(High, Delayed) + Lowest(Low, Delayed)) / 2;
- plot1(StdLine, "BASE LINE");
- plot2(Turnline, "CONVERSION LINE");
- plot3(Span1, "SPAN A No 25 Offset"); // Offset 25 periods not applied
- plot4(Span2, "SPAN B No 25 Offset"); // Offset 25 periods not applied
- //plot5(Span1[25], "SPAN A Offset 25"); // Offset 25 periods already applied
- //plot6(Span2[25], "SPAN B Offset 25"); // Offset 25 periods already applied
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement