Your code is incomplete and will not compile as it stands.
Also, please use the "</>" icon or Alt-S when adding code to your post.
-
Please edit your (original) post and use the CODE button (or Alt+S)! (For large amounts of code, attach it.)
General rules and best pratices of the Forum. - General - MQL5 programming forum (2019)
Messages Editor -
void fFractalSegmentSeriesAnalysis(double series[], int segmLength, int segmShift …
You are trying to pass an array by value. Pass it by reference.
'series' - arrays are passed by reference only fFractalSegmentSeriesAnalysis (1).mqh 13 43,
'segmShift' - unexpected end of program fFractalSegmentSeriesAnalysis (1).mqh 13 73
void fFractalSegmentSeriesAnalysis(double &series[], int segmLength, int segmShift
-
Please edit your (original) post and use the CODE button (or Alt+S)! (For large amounts of code, attach it.)
General rules and best pratices of the Forum. - General - MQL5 programming forum (2019)
Messages Editor -
You are trying to pass an array by value. Pass it by reference.
Thanks, I will use better practices in the next time. I will try use-it by reference. Thanks again.
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Hello, please, I need complete this code. Any suggestion? thanks
//+------------------------------------------------------------------+
void fFractalSegmentSeriesAnalysis(double series[], int segmLength, int segmShift
compiled:
'series' - arrays are passed by reference only fFractalSegmentSeriesAnalysis (1).mqh 13 43,
'segmShift' - unexpected end of program fFractalSegmentSeriesAnalysis (1).mqh 13 73