Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Study Indicatore Daily/Weekly/Monthly OHLC //
- Input: Daily0(false),
- Daily1(true),
- Weekly1(false),
- Monthly1(false);
- If Daily0 then
- Begin;
- plot1(highD(0),"Plot Daily High0");
- plot2(lowD(0),"Plot Daily Low0");
- End;
- If Daily1 then
- Begin;
- plot3(highD(1),"Plot Daily High1");
- plot4(lowD(1),"Plot Daily Low1");
- End;
- If Weekly1 then
- Begin;
- plot5(highW(1),"Plot Weekly High1");
- plot6(lowW(1),"Plot Weekly Low1");
- End;
- If Monthly1 then
- Begin;
- plot7(highM(1),"Plot Monthly High1");
- plot8(lowM(1),"Plot Monthly Low1");
- End;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement