Specifiche
//+------------------------------------------------------------------+
//| 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;
//+------------------------------------------------------------------+
int OnInit()
{
rsiHandle = iRSI(_Symbol, PERIOD_M5, RSI_Period, PRICE_CLOSE);
ema50Handle = iMA(_Symbol, PERIOD_M5, 50, 0, MODE_EMA, PRICE_CLOSE);
ema200Handle = iMA(_Symbol, PERIOD_M5, 200, 0, MODE_EMA, PRICE_CLOSE);
return(INIT_SUCCEEDED);
}
//+------------------------------------------------------------------+
void OnTick()
{
double rsi[], ema50[], ema200[];
CopyBuffer(rsiHandle, 0, 0, 1, rsi);
CopyBuffer(ema50Handle, 0, 0, 1, ema50);
CopyBuffer(ema200Handle, 0, 0, 1, ema200);
if(PositionSelect(_Symbol)) return;
double Ask = SymbolInfoDouble(_Symbol, SYMBOL_ASK);
double Bid = SymbolInfoDouble(_Symbol, SYMBOL_BID);
// BUY CONDITION
if(ema50[0] > ema200[0] && rsi[0] > 55)
{
trade.Buy(LotSize, _Symbol, Ask, Ask - StopLoss * _Point, Ask + TakeProfit * _Point);
}
// SELL CONDITION
if(ema50[0] < ema200[0] && rsi[0] < 45)
{
trade.Sell(LotSize, _Symbol, Bid, Bid + StopLoss * _Point, Bid - TakeProfit * _Point);
}
}
Con risposta
1
Valutazioni
Progetti
39
23%
Arbitraggio
14
0%
/
93%
In ritardo
4
10%
In elaborazione
2
Valutazioni
Progetti
236
33%
Arbitraggio
20
45%
/
30%
In ritardo
1
0%
Gratuito
3
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
Pubblicati: 2 codici
4
Valutazioni
Progetti
1699
49%
Arbitraggio
52
71%
/
12%
In ritardo
38
2%
In elaborazione
5
Valutazioni
Progetti
2905
63%
Arbitraggio
122
44%
/
25%
In ritardo
429
15%
In elaborazione
6
Valutazioni
Progetti
2
0%
Arbitraggio
1
0%
/
100%
In ritardo
0
Gratuito
7
Valutazioni
Progetti
0
0%
Arbitraggio
1
0%
/
0%
In ritardo
0
In elaborazione
8
Valutazioni
Progetti
7
0%
Arbitraggio
8
13%
/
75%
In ritardo
3
43%
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
Stratégie SMC Avancée (Multi-TF / BOS / Liquidity)
30 - 150 USD
Description du projet : Je recherche un développeur MQL5 expérimenté pour créer un Expert Advisor (EA) complet basé sur les concepts de Smart Money Concepts (SMC) . L'algorithme doit fonctionner sur trois unités de temps synchronisées (H4, M15, M1). Compétences techniques requises : Maîtrise parfaite du Multi-Timeframe (MTF) sans "survie" (no repainting/no future leaking). Capacité à coder des détections de
Trader
30+ USD
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
Informazioni sul progetto
Budget
30 - 200 USD
Scadenze
da 3 a 5 giorno(i)
Cliente
Ordini effettuati2
Numero di arbitraggi0