Convert to Thinkscript

#1
Hi,

I found the exact script I need on your site! Wonderful!

One small problem. I use Thinkorswim which uses thinkscript. Is there anyway someone here can convert the script below to Thinkscript?


// **********************************************
SetChartBkColor(colorBlack);
SetChartOptions(0, chartShowDates | chartWrapTitle);

PlotOHLC(O, H, L, C, "Close", colorLightGrey, styleCandle | styleNoLabel);

for(i = 0; i<BarCount; i++)
{
PlotText(StrRight(NumToStr(H, 1.2), 5), i, H, colorGreen);
PlotText(StrRight(NumToStr(L, 1.2), 5), i, 0.998 * L, colorRed);
}



// **********************************************

The linke is here:
http://www.traderji.com/amibroker/38485-afl-show-high-low-price-candles.html

Thanks :)
 

Similar threads