_SECTION_BEGIN("Panetery Transit indicator");
Plot( C, "Price", colorBlack, styleCandle );
dnsun = ParamDate("Date", "", 0 );
tnsun = ParamTime("Time", "00:00:00", 0 );
Plot(tnsun ,"vertical line", colorRed,styleHistogram|styleOwnScale|styleDashed, 0, 1);
_SECTION_END();
Sendon option
SECTION_BEGIN("Panetery Transit indicator");
Plot( C, "Price", colorBlack, styleCandle );
dnsun = ParamDate("Date", "", 0 );
tnsun = ParamTime("Time", "00:00:00", 0 );
//Plot VERTICAL LINES ON PRICE CHART
style = styleHistogram|styleOwnScale|styleNoLabel|styleNoTitle;
Plot(dnsun ,"vertical line", colorGreen, style, 0, 1); // price pane
//Plot(Sell, "vertical line", colorRed, style, 0, 1); // price pane
//Plot(tnsun ,"vertical line", colorRed,styleHistogram|styleOwnScale|styleDashed, 0,
1);
_SECTION_END();