You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Don't use tickvalue by itself https://www.mql5.com/en/forum/133792/page3#512466
Unable to understand, what you wanted to tell in,
Even i didn't get your point on the link you shared. In my code,
Will you please modify it? So i could understand it better.
@RaptorUK This time...
Both worked, no error. Strange. But still i changed it.
Where can i find https://docs.mql4.com/indicators/iama now???
It's broken, I have submitted a ticket to the service Desk . . . in the mean time . . .
iMA
Calculates the Moving Average indicator and returns its value.
double iMA(
string symbol, // symbol
int timeframe, // timeframe
int ma_period, // MA averaging period
int ma_shift, // MA shift
int ma_method, // averaging method
int applied_price, // applied price
int shift // shift
);
Parameters
symbol
[in] Symbol name on the data of which the indicator will be calculated. NULL means the current symbol.
timeframe
[in] Timeframe. It can be any of ENUM_TIMEFRAMES enumeration values. 0 means the current chart timeframe.
ma_period
[in] Averaging period for calculation.
ma_shift
[in] MA shift. Indicators line offset relate to the chart by timeframe.
ma_method
[in] Moving Average method. It can be any of ENUM_MA_METHOD enumeration values.
applied_price
[in] Applied price. It can be any of ENUM_APPLIED_PRICE enumeration values.
shift
[in] Index of the value taken from the indicator buffer (shift relative to the current bar the given amount of periods ago).
Returned value
Numerical value of the Moving Average indicator.
Example:
AlligatorJawsBuffer[i]=iMA(NULL,0,13,8,MODE_SMMA,PRICE_MEDIAN,i);
It's broken, I have submitted a ticket to the service Desk . . . in the mean time . . .
What should i use for expert to start function?
or can i use both in new meta editor?
(i think am asking about a very basic thing, but actually i have zero knowledge and am interested in learning it.)
What should i use for expert to start function?
or can i use both in new meta editor?
(i think am asking about a very basic thing, but actually i have zero knowledge and am interested in learning it.)
Tried alot to get the code for "LotsProgression" feature for my EA but its confusing. Can you guys please highlight the code in below source, which is written for lots progression? (and please also tell that how to highlight some part of source like here
double lots[]
Tried alot to get the code for "LotsProgression" feature for my EA but its confusing.
what's confusing can u explain ur problem
I think with that #property strict you will have to initialize that i,j,k to a value...
int i=0,j=0,k=0;
PipPip...Jimdandy