i found the iSmooth i have no idea what to do next i didnt realize there was so much code to addmrtools wrote: Thu Jun 15, 2023 4:54 am Something like this
then you need to add the iSmooth function with 30 instances.Code: Select all
input int Length = 10; input double Phase = 0; double BarH = iSmooth(High[i]-Open[i], Length,Phase,i, 0); double BarL = iSmooth(Low[i]-Open[i] ,Length,Phase,i,10); double BarC = iSmooth(Close-Open[i], Length,Phase,i,20);
this is the full code