Author:
Damien
Similar MetaTrader Trading Tools:
- Multi SellLimitOrders & Multi SellStopOrders -… Multi SellLimitOrders & Multi SellStopOrders - script MetaTrader 4
- SL-TP price to Order Execution price Pip Calculator… It calculates pips between Order Execution price and and Stoploss or/and Takeprofit price. Beginners study SL price to Order Execution…
- Trading signals function. Based on the values of the… Trading signals function. Based on the values of the CCI indicator. Add the function to the EA: #include <Signal.mqh> Condition…
- Example of plotting a function spectrum using the… Description: Example of plotting a function spectrum using the FFT library A test function based on the sum of 3…
- Simple check open orders filter boolean function for… It is common for novice developers to face the challenge of making the Expert Advisor able to detect if there…
- BreakEven Function - script MetaTrader 4 //+------------------------------------------------------------------+ //|Breakeven                                                        | //+------------------------------------------------------------------+ void BreakEven(double _breakEvenPips, bool useSymbol=false, bool useMagicNumber=false, int _magicNumber=0) {     for(int i=OrdersTotal()-1; i>=0; i--) {         if(OrderSelect(i,SELECT_BY_POS))…
- Trailing Step Function - script MetaTrader 4 //+------------------------------------------------------------------+ //|Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â | //+------------------------------------------------------------------+ void TrailingStep(double trailingStepStartPips, double _trailingStepPips, double initialStopLossInPips=0, bool useSymbol=false, bool useMagicNumber=false, int _magicNumber=0, bool initialStopLossWillBeDone=true) { Â Â Â Â for(int…
- Trailing Function - script MetaTrader 4 //+------------------------------------------------------------------+ //|Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â | //+------------------------------------------------------------------+ void Trailing(double trailingStartPips, double _trailingPips, double initialStopLossInPips=0, bool useSymbol=false, bool useMagicNumber=false, int _magicNumber=0, bool initialStopLossWillBeDone=true) { Â Â Â Â for(int…