https://www.mql5.com/en/code/10647
Fractal ZigZag (never repaints)
- votes: 1
- 2012.03.16
- Point Zero
- www.mql5.com
This indicator shows signals triggered using Fractals and the original ZigZag indicator. Signals are never -ever- repainted and is an useful tool to study the real behavior of the ZigZag indicator.
abu520:
https://www.mql5.com/en/code/10647
https://www.mql5.com/en/code/10647
iCustom(...
Marco vd Heijden:
thanks for helping.
//+------------------------------------------------------------------+ //|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| //+------------------------------------------------------------------+ //+--- double ExtHandle = 0; //+--- //+------------------------------------------------------------------+ //|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| //+------------------------------------------------------------------+ int OnInit() { //+------------------------------------------------------------------+ EventSetTimer(60); //+------------------------------------------------------------------+ ExtHandle = iCustom(Symbol(), 0, "FractalZigZagNoRepaint", CalculateOnBarClose, ZZDepth, ZZDev); if(ExtHandle == INVALID_HANDLE) { printf("Error creating FractalZigZagNoRepaint indicator"); return(INIT_FAILED); } //+------------------------------------------------------------------+ return(INIT_SUCCEEDED); } //+------------------------------------------------------------------+ //|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| //+------------------------------------------------------------------+
and then ? how to get those arrow ?? like that ??
i tried that, but doesnt open any position..
if ((SymbolInfoDouble(_Symbol, SYMBOL_ASK) < ExtHandle))
{
ConditionBuy = true;
}
if ((SymbolInfoDouble(_Symbol, SYMBOL_BID) > ExtHandle))
{
ConditionSell = true;
}
any help ??
abu520:
any help ??
any help ??
You talk about opening orders there is no code for opening orders in your code, you talk about arrows but there is also no code for creating arrows.
What do you want ? be specific.
any good strategy for scalping ?
thanks for any sharing.
Marco vd Heijden:
You talk about opening orders there is no code for opening orders in your code, you talk about arrows but there is also no code for creating arrows.
What do you want ? be specific.
i give up for using iCustom.
now i need strategy for scalping.
any sharing ??
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