Lesson 9 Buy sell stop Order – EA MetaTrader 5

Lesson 9 Buy sell stop Order - expert for MetaTrader 5
I. Main function 1. Using condition buy or sell base on price action. 2. Auto caculate lot size 3. Auto trailling stop by ATR. 4. Backtest result II. Main tick function //+——————————————————————+ //| Expert tick function                                             | //+——————————————————————+ void OnTick() {    if(OpenBar(Symbol()))    {    OrderManaging(); // Candle declaration double High[],Low[],open[],close[]; ArraySetAsSeries(High,true);ArraySetAsSeries(Low,true);ArraySetAsSeries(close,true);ArraySetAsSeries(open,true); CopyHigh(Symbol(),timeframe,0,1000,High); CopyLow(Symbol(),timeframe,0,1000,Low); … Read more

Sell with Buy Stop Hedge for chart symbol / Buy with Sell Stop Hedge for chart symbol – script MetaTrader 4

Sell with Buy Stop Hedge for chart symbol / Buy with Sell Stop Hedge for chart symbol - script for MetaTrader 4
It has been over two yeas I don’t use  stop orders much. Instead of placing Stop Loss orders, I use hedged pending orders. I use this scripts often in my trading with keyboard shortcuts ALT+B vs ALT+S, so I think is useful enough to share this scripts with you. #property copyright     “Copyright 2024, MetaQuotes … Read more

Buy Sell Close Manual trading EA for trading newbies – EA MetaTrader 4

Buy Sell Close Manual trading EA for trading newbies - expert for MetaTrader 4
[@Buy_Sell_Close] Manual trading EA for trading newbies, EA can be used in backtesting visual mode, EA can also be used in live trading. You can practice your own trading system in backtesting [@Buy_Sell_Close], manual operation of the EA, pause, or modify the speed of the review backtest, to facilitate the manual trading exercises Introduction: 1 … Read more

Customized Buy Sell Close v2 — Now in one script – script MetaTrader 4

Customized Buy Sell Close v2 -- Now in one script - script for MetaTrader 4
Customized ard buy sell Close V2 in one script ….. Based on Customized Ard Buy Sell V 1 Features: it’s have standard order code: Code 0 for closing Current Code 1 for Close then buying | so you don’t have to manually close the last position — Script will generate for you Code 2 for … Read more

Averager on BUY and SELL simultaneously – EA MetaTrader 5

The result on September_2012.
The Expert Advisor operates on the principle of the Moving Average. Simultaneously in both directions. It calculates volume for BUY and SELL separately. It divides the volume received in accordance with the given “save percentage”. Then it sends one order. This program does not use any indicators. The Expert Advisor is represented on Automated Trading … Read more

Stochastic Buy Sell Arrows with Alert – indicator MetaTrader 4

Stochastic Buy Sell Arrows Indicator MT4
Real author: Nitin This indicator provides Buy/Sell arrows based on exit from the Overbought and Oversold zones in Stochastic Oscillator. A Buy arrow is printed when Stochastic oscillator exits from the Oversold Zone. A Sell arrow is printed when Stochastic oscillator exits from the Overbought Zone. Very good indicator to collect some quick pips in … Read more