Attachments forums

List of attachments posted on this forum.


All files on forums: 135675

Re: MT4 Indicator requests and ideas

mrtools, Thu Jun 15, 2023 5:04 am

Chickenspicy wrote: Thu Jun 15, 2023 4:38 am am trying to use parts of this code to insert into it
Image
Something like this

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);
then you need to add the iSmooth function with 30 instances. Like this.
All files in topic