Lavoro terminato

Tempo di esecuzione 1 giorno
Feedback del cliente
Très professionnel.
Feedback del dipendente
My first job with this guy. Very excellent customer !!!

Specifiche

Hello,

I would like to create a martingal bot, I made a correct script but, the bot doesn't renitialize its lot when it hits the take profit.


Specfication:

The bot must trade from 7am to 10pm.

Open only one position at a time

take profit at 50 pips, stop loss at 25 pips, must be modifiable.

If the position is closed at stop loss, it opens a new position in the opposite direction and the lot is doubled;

if the position is closed with a take profit, the bot opens a new position in the opposite direction and the lot is reset to the initial lot.

Example: The first position is long (buy), the initial lot is 0.01, the trade hits the stop loss, the bot opens a new trade but in a short position (sell), and the lot is multiplied by 2 so the next lot is 0.02, then the bot hits the take profit, so it renitialises the lot to 0.01 in the new long position (buy).


I'd like to have as inputs: trading time/ initial lot/ take profit/ stop loss 

Additional option: If it's possible, the bot can analyse the tandance on the chart and open its first trade in that tandance. adapt the initial lot as the account grows.


 the attached document is the first script of this bot (TX8)

reverse position is correct

entry time is correct

tp and sl input is correct 

double and lot initialisation have a problem

and there are bugs, which is probably the fault of the distribution


File:

MQ5
TX8.mq5
7.6 Kb

Con risposta

1
Sviluppatore 1
Valutazioni
(557)
Progetti
644
33%
Arbitraggio
41
41% / 46%
In ritardo
11
2%
Occupato
2
Sviluppatore 2
Valutazioni
(443)
Progetti
700
34%
Arbitraggio
34
71% / 9%
In ritardo
22
3%
Gratuito
3
Sviluppatore 3
Valutazioni
(1285)
Progetti
1710
49%
Arbitraggio
52
71% / 12%
In ritardo
38
2%
Gratuito
Ordini simili
VICTOIRE MASTERCLASS 30 - 200 USD
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;

Informazioni sul progetto

Budget
50 - 80 USD
Scadenze
da 3 a 5 giorno(i)