ggekko:
No. If the declaration reads double, you cannot pass another type.
Hi Gurus,
I can get iMaOnArray from an array, like this:
My question: is it possible to get iMaOnArray from an element of a structure?
Let's say I have this structure:
I need to get iMaOnArray from Basic_Struct[index].s_price
Is it possible? If yes, how?
Thank you
Ovo:
No. If the declaration reads double, you cannot pass another type.
No. If the declaration reads double, you cannot pass another type.
Yes, I thought. Too bad ..
Thank you for your answer.
You'll have to write your own.
Not compiled, not tested.
double iMAOnBasic_Struct( const Basic_Struct& array[] // array with data int total, // number of elements int ma_period, // MA averaging period int ma_shift, // MA shift int ma_method, // MA averaging method int shift // shift ){ double values[]; ArrayResize(values, total); for(int i=0; i < total; ++i) values[i] = Basic_Struct[i + shift].s_price; retur iMAOnArray(values, total, ma_period, ma_shift, ma_method, 0); }Not compiled, not tested.
WHRoeder:
You'll have to write your own.
You'll have to write your own.
Not compiled, not tested.Not compiled, not tested.
Thank you for your answer. My problem is that this solution do not give a direct access to iMAOnArray.
I know I can load the values through a cycle
for(int i=0; i < total; ++i) values[i] = Basic_Struct[i + shift].s_price;
but I would have liked a direct access without making a plus array (because the speed).
Thank you again!
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
Hi Gurus,
I can get iMaOnArray from an array, like this:
My question: is it possible to get iMaOnArray from an element of a structure?
Let's say I have this structure:
I need to get iMaOnArray from Basic_Struct[index].s_price
Is it possible? If yes, how?
Thank you