I would like to create an EA that can perform the following functions on forex scalping M1:
Entry when the price enters the overbought zone of the RSI (level 70) or oversold zone (level 30) OR if the size of the candle is X pips or both.
Entry will be made when the candle closes.
For example, if the price becomes overbought and the size of the candle is 3 pips, enter a position.
When entering a position, the EA will have to open a trade then program plenty of pending orders on a martingale strategy.
For example a buy at 0.01 lot then 10 other buys waiting, separated by 2 pips. The martingale I want is described below.
For the TP and SL, there will be none.
I wish there was a button on the chart to close all trades at once. A close button.
Here is what the EA menu should contain: (only for the developer selectionned)
Similar orders
import ccxt import pandas as pd import numpy as np import talib import time # Configuration exchange = ccxt.binance({ 'apiKey': 'VOTRE_API_KEY', 'secret': 'VOTRE_SECRET_KEY', }) # Paramètres de trading symbole = 'BTC/USDT' timeframe = '1h' montant = 100 # en USDT stop_loss = 0.98 # 2% de perte maximale take_profit = 1.03 # 3% de gain def recuperer_donnees(): ohlcv = exchange.fetch_ohlcv(symbole, timeframe
//+------------------------------------------------------------------+ //| M65 PRO ROBOT | //| Trend + RSI + Risk Management | //+------------------------------------------------------------------+ #property strict input double LotSize = 0.01; input int StopLoss = 100; // points input int TakeProfit = 200; // points input int RSI_Period = 14; int rsiHandle; int ema50Handle; int ema200Handle;
Un robot qui tarde a ma place même quand je Dors je veux qu'elle faire tout les tâches a ma place même quand le téléphone est éteint ou allumé le robot doit analyse et trade pour moi