I want to know the full meaning of the price numbers. I know Open, Close, and others are part of it. But which number stands for what? Please help if you can.
An example picture has been added.
Re: What does the Price numbers in indicator settings mean
#2The first 6 are standard metatrader prices 7 and 8 are these below.
Code: Select all
double getPrice(int type, int i)
{
switch (type)
{
case 7: return((Open[i]+Close[i])/2.0);
case 8: return((Open[i]+High[i]+Low[i]+Close[i])/4.0);
default : return(iMA(NULL,0,1,0,MODE_SMA,type,i));
}
}
Re: What does the Price numbers in indicator settings mean
#3Thank you a lot!mrtools wrote: ↑Wed Dec 14, 2022 1:55 pmThe first 6 are standard metatrader prices 7 and 8 are these below.
Code: Select all
double getPrice(int type, int i) { switch (type) { case 7: return((Open[i]+Close[i])/2.0); case 8: return((Open[i]+High[i]+Low[i]+Close[i])/4.0); default : return(iMA(NULL,0,1,0,MODE_SMA,type,i)); } }
-
Similar Topics
-
Fibonacci Numbers - What numbers can be used for trading indicator settings?
4 Replies 2382 Viewsby Jimmy, Mon Aug 30, 2021 11:18 pm in Forex Education
4 Replies
2382 Views -
Close Price VS Median Price (or other price types)
10 Replies 3097 Viewsby Patrick K, Tue Nov 03, 2020 4:04 am in New Members & Common Forex Q&A's
10 Replies
3097 Views
-