작업 종료됨
실행 시간 1 일
피고용인의 피드백
Great guy .. friendly and generous .. thanks and I hope we work again soon
명시
I need an ea based on the indicator that i attach.
The ea must include the indicator in the code with same imputs and calculations.
The indicator calculates the momentum of the 8 major currencies, applies two smoothing emas and gets a final TSI value in a buffer (index 0 to 7).
This TSI value gives the signal of oversold or overbought for each currency.
The ea is multicurrency only for calculations, but it will trade only in the pair where is installed, and in the same timeframe.
So the ea must detect first which is the symbol and TF, and use only the buffers for the 2 currencies of that pair for opening trades.
The ea waits until the values of the indicator are in oversold and overbought condition, one currency is oversold and the other is overbought,
when the 2 contrary values appear at the same time. Then we have a signal (the ea trade the reversal of price under this conditions).
For example in EURUSD when EUR is overbought and USD is oversold we have a SELL signal.
After the signal there are 2 conditions for opening a trade:
Condition 1: Once we have a signal, the ea must wait for the actual candle to close, if the signal is a SELL and the candle closes bearish,
then ea opens a sell trade at the candle close. But if the closing candle is bullish, the ea has to wait until the first bearish candle is formed.
Condition 2: When ea finds the correct candle, the values of the indictor should not be greater than in the previous candle.
We calculate this by resting the values of the 2 currencies. The difference of values for actual candle should not be greater than at closing
of previous candle. Example: in the correct candle we have eur=+55 and usd -55 > difference=110, but in the previous candle at closing we had
eur=+50 and usd=-50 diff=100, so in the actual candle the difference is greater than previous candle, trade can not be opened. We have to wait
until the correct candle closes and the difference of indicator values is smaller than previous candle.
The ea finally opens a trade, but the values are still in the conditions for opening a trade, imagine they are still the same for some candles,
the ea will not open more trades in this case. Just one trade per signal.
Only if the values of the 2 currencies or one of the currencies change, for example there was a signal in +50 and -50, in some candles one currency
maintains +50, but the other goes from -50 to -40 and again to -50, in this case we will have a new signal and the ea will look for the proper candle
again. no matter if there are an opened trade just before.
Trade will close with 3 options: fixed tp in points, tp in the ema, tp in X value of indicator.
Inputs for the ea:
>·original imputs of the indicator
>·magic number:
>·overbought value to open trade: (0 +100)
>·oversold value to open trade: (0 -100)
>·fixed lot:
>·risk lot: 1% -100%
>·max simultaneous opened trades: (if 0 no limit) (max trades for this ea, this magic number)
>·stoploss in points for single trade: (if 0 no stoploss)
>·global/ hard stoploss: in % (ex: if equity -10% close all open trades)
>·type of tp: points/ema/value
>·tp if points: (if 0 no tp)
>·tp if ema: (manual value for ema: 50, 100, 200…)
>·tp if value: X : this means if a trade is opened by oversold/overbought value, it will close when one of the 2 currencies, no matter wich one,
arrives to this value: if open trade by+50 for one currency and -50 for the other currency, the trade will close when one of them arrives to X.
This should take into account that values should be 0 or contrary to the initial one: if X is 25>> open trade was +50 and -50, so close condition
is the first currency +50 goes to -25, or the second currency goes from -50 to +25.
EURUSD: if signal buy EUR -50 USD +50 tp will be EUR +X or USD -X
EURUSD if signal sell EUR +50 USD -50, tp will be EUR -X or USD +X
>·max simultaneous trades for the ea (this magic number): 1, 2, 3 etc
>·graphic options: show full indicator/ show only the trading pair/ hide indicator
The ea must include the indicator in the code with same imputs and calculations.
The indicator calculates the momentum of the 8 major currencies, applies two smoothing emas and gets a final TSI value in a buffer (index 0 to 7).
This TSI value gives the signal of oversold or overbought for each currency.
The ea is multicurrency only for calculations, but it will trade only in the pair where is installed, and in the same timeframe.
So the ea must detect first which is the symbol and TF, and use only the buffers for the 2 currencies of that pair for opening trades.
The ea waits until the values of the indicator are in oversold and overbought condition, one currency is oversold and the other is overbought,
when the 2 contrary values appear at the same time. Then we have a signal (the ea trade the reversal of price under this conditions).
For example in EURUSD when EUR is overbought and USD is oversold we have a SELL signal.
After the signal there are 2 conditions for opening a trade:
Condition 1: Once we have a signal, the ea must wait for the actual candle to close, if the signal is a SELL and the candle closes bearish,
then ea opens a sell trade at the candle close. But if the closing candle is bullish, the ea has to wait until the first bearish candle is formed.
Condition 2: When ea finds the correct candle, the values of the indictor should not be greater than in the previous candle.
We calculate this by resting the values of the 2 currencies. The difference of values for actual candle should not be greater than at closing
of previous candle. Example: in the correct candle we have eur=+55 and usd -55 > difference=110, but in the previous candle at closing we had
eur=+50 and usd=-50 diff=100, so in the actual candle the difference is greater than previous candle, trade can not be opened. We have to wait
until the correct candle closes and the difference of indicator values is smaller than previous candle.
The ea finally opens a trade, but the values are still in the conditions for opening a trade, imagine they are still the same for some candles,
the ea will not open more trades in this case. Just one trade per signal.
Only if the values of the 2 currencies or one of the currencies change, for example there was a signal in +50 and -50, in some candles one currency
maintains +50, but the other goes from -50 to -40 and again to -50, in this case we will have a new signal and the ea will look for the proper candle
again. no matter if there are an opened trade just before.
Trade will close with 3 options: fixed tp in points, tp in the ema, tp in X value of indicator.
Inputs for the ea:
>·original imputs of the indicator
>·magic number:
>·overbought value to open trade: (0 +100)
>·oversold value to open trade: (0 -100)
>·fixed lot:
>·risk lot: 1% -100%
>·max simultaneous opened trades: (if 0 no limit) (max trades for this ea, this magic number)
>·stoploss in points for single trade: (if 0 no stoploss)
>·global/ hard stoploss: in % (ex: if equity -10% close all open trades)
>·type of tp: points/ema/value
>·tp if points: (if 0 no tp)
>·tp if ema: (manual value for ema: 50, 100, 200…)
>·tp if value: X : this means if a trade is opened by oversold/overbought value, it will close when one of the 2 currencies, no matter wich one,
arrives to this value: if open trade by+50 for one currency and -50 for the other currency, the trade will close when one of them arrives to X.
This should take into account that values should be 0 or contrary to the initial one: if X is 25>> open trade was +50 and -50, so close condition
is the first currency +50 goes to -25, or the second currency goes from -50 to +25.
EURUSD: if signal buy EUR -50 USD +50 tp will be EUR +X or USD -X
EURUSD if signal sell EUR +50 USD -50, tp will be EUR -X or USD +X
>·max simultaneous trades for the ea (this magic number): 1, 2, 3 etc
>·graphic options: show full indicator/ show only the trading pair/ hide indicator
응답함
1
등급
프로젝트
172
25%
중재
23
9%
/
78%
기한 초과
16
9%
작업중
2
등급
프로젝트
19
16%
중재
5
40%
/
40%
기한 초과
0
무료
3
등급
프로젝트
21
10%
중재
4
25%
/
75%
기한 초과
0
무료
4
등급
프로젝트
59
27%
중재
26
19%
/
54%
기한 초과
10
17%
작업중
게재됨: 1 코드
5
등급
프로젝트
8
25%
중재
2
50%
/
0%
기한 초과
2
25%
무료
6
등급
프로젝트
7
43%
중재
8
13%
/
88%
기한 초과
0
무료
7
등급
프로젝트
125
24%
중재
23
26%
/
52%
기한 초과
8
6%
작업중
8
등급
프로젝트
83
28%
중재
9
33%
/
56%
기한 초과
9
11%
무료
게재됨: 1 코드
9
등급
프로젝트
243
74%
중재
7
100%
/
0%
기한 초과
1
0%
무료
게재됨: 1 기고글
10
등급
프로젝트
87
29%
중재
24
13%
/
58%
기한 초과
7
8%
로드됨
비슷한 주문
I need a professional MT5 Expert Advisor (EA) built with clean, modular code. This is an advanced strategy combining liquidity concepts, controlled DCA, hedge protection, and strict risk management. Core Requirements: Entry Logic (ALL must align): Liquidity sweep (Previous Day High/Low breakout and return) EMA50 and EMA200 trend alignment Higher timeframe bias (H1 or H4) RSI confirmation Bollinger Band entry Filters
Custom MT5 EA - Perpetual NDA Required
1000 - 2000 USD
I need a professional MQL5 developer. BEFORE I SHARE ANY DETAILS: 1. You must sign a PERPETUAL NDA with no expiration date 2. NDA includes €100,000 penalty for any breach 3. I require full .mq5 source code ownership 4. Developer must have 500+ completed jobs, 4.9+ rating Budget: €1500 EUR Duration: 14 days Start your application with "RULER" to prove you read this
Pip Scalper Bot
60+ USD
i want a trading bot that is aleast 98% sure,and cam also do scalping 99% correct using smart money concept, ICT, ALL technical analysis on it and also put risk management on it
Greetings I need MT5 developer that has expertise in developing a custom indicator for mt5 boom and crash based on my exact details and requirements which would be discuss later. Kindly bid for this project if it is something you can handle for me
AI Trading MQL5: Maximizing Profit from a $10 Investment Achieving significant profits from a small initial capital like $10 in AI trading with MQL5 requires a highly strategic and disciplined approach. While the potential for exponential growth exists, it's crucial to manage expectations and understand the inherent risks. **Key Strategies for Small Capital AI Trading:** 1. **Low-Risk, High-Probability
Expert NinjaTrader Programmer Needed
60 - 100 USD
I’m looking for an experienced NinjaTrader developer to complete an existing custom indicator. The project is already partially built and is well organized, completely functional, and well documented. The former developer experienced some personal difficulties and unfortunately cannot continue. Key Requirement (Read Carefully): You MUST have direct, hands-on experience with NinjaTrader and NinjaScript (C#) . This is
Combination of RSI and Moving averages
30 - 300 USD
I need a professional developer to help me create an EA using RSI and Moving averages.The strategies are well organised and everything is in order. I will send all the details in the inbox
Powerful
30 - 100 USD
I really want a powerful developed EA that can generate a minimum of 10% every month without martingale, greed or any dangerous strategy for sale. Developer must provide the mql5 file or the raw file for modification etc
I already have a fully developed MT5 Expert Advisor with all required prop firm features, including: Risk management Daily loss & max drawdown limits Spread & slippage filters News filter Trade management system The EA structure is complete. 👉 What I need is a professional developer to replace ONLY the entry logic with a high-quality, rule-based trading strategy. 🚨 STRICT REQUIREMENT (READ CAREFULLY): I am NOT
Hello, I’m looking for an experienced developer who can help convert an existing cTrader indicator into a fully functional Quantower indicator . I already have the complete source code for the cTrader indicator (written in C#) , and I would like the same logic, behavior, and visual output to be accurately replicated in Quantower
프로젝트 정보
예산
50+ USD