Just risk a look into the documentation :)
Either from here https://www.mql5.com/en/docs/function_indices or put the cursor on iAligator and press F1 - that simple :)
Fellow Enthusiats: How do you get programmatically: the current values for Jaw, Teeth and lips for iAlligator? Thanks.
Code: iAlligator Intersection
//+------------------------------------------------------------------+ //| Search trading signals | //+------------------------------------------------------------------+ bool SearchTradingSignals(void) { if(m_prev_bars==m_last_deal_in) // on one bar - only one deal return(true); double jaw[],teeth[],lips[]; MqlRates rates[]; ArraySetAsSeries(jaw,true); ArraySetAsSeries(teeth,true); ArraySetAsSeries(lips,true); ArraySetAsSeries(rates,true); int start_pos=0,count=3; if(!iGetArray(handle_iAlligator,GATORJAW_LINE,start_pos,count,jaw) || !iGetArray(handle_iAlligator,GATORTEETH_LINE,start_pos,count,teeth) || !iGetArray(handle_iAlligator,GATORLIPS_LINE,start_pos,count,lips) || CopyRates(m_symbol.Name(),Period(),start_pos,count,rates)!=count) { return(false); }
Perhaps you should read the manual. iAlligator - Technical Indicators - MQL5 Reference - Reference on algorithmic/automated trading language for MetaTrader 5
How To Ask Questions The Smart Way. 2004
How To Interpret Answers.
RTFM and STFW: How To Tell You've Seriously Screwed Up.
Perhaps you should read the manual. iAlligator - Technical Indicators - MQL5 Reference - Reference on algorithmic/automated trading language for MetaTrader 5
How To Ask Questions The Smart Way. 2004
How To Interpret Answers.
RTFM and STFW: How To Tell You've Seriously Screwed Up.
I do know the answer. And had you bothered to click on the link provided, you would know also.
Three consecutive insults have put you on my do not help list. Live in ignorance.
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Fellow Enthusiats: How do you get programmatically: the current values for Jaw, Teeth and lips for iAlligator? Thanks.