I need one EA with some strategy. If the price are more, make an offer !!

MQL5 전문가

명시

Hi , i need one EA with some strategy. 
i need the source code
test 10 days

If the price are more, make an offer !!


-------------------------------------------------------------------------------------------------

only BUY
only SELL

BUY & SELL

-------------------------------------------------------------------------------------------------
on/off
LOWBB


This buy strategy is true when current ask price goes below the LOWBB threshold you specify.
BB buy values are percentages of the BB width. Width = HIGHBB - LOWBB and a buy_value of +/-10 represents 10% of this width.
For a coin to be bought using LOWBB, the ask price must be equal to or less than the value of the LOWBB price multiplied by (1 + buy_value expressed as a percentage).
The Numbers

Valid Values: 100 to -100

100 = 100% of the BB width above LOWBB. i.e. on the HIGHBB line
50 = 50% of the BB width above LOWBB. i.e halfway between HIGHBB and LOWBB
0 = on the LOWBB line
-50 = 50% of the BB width below LOWBB
-100 = 100% of the BB width below LOWBB
The lower the value the more conservative it is.

The Formula

negative buy_value

Buy Price <= LOWBB - ((HIGHBB - LOWBB) * ABS(buy_value)/100)
positive buy value

Buy Price <= LOWBB + ((HIGHBB - LOWBB) * ABS(buy_value)/100) 
The Parameters

BB_std
BB_candle_period
BB_Length


Examples

DEFAULT_A_buy_value = 20 ? buy zone begins 20% (of width) above LOWBB line. Ask price must be less than or equal to this value. DEFAULT_A_buy_value_limit must be less than 20 including negative numbers if used.
DEFAULT_A_buy_value = 0 ? buy zone begins right on top of the LOWBB line. Ask price must be less than or equal to this value. DEFAULT_A_buy_value_limit must be less than 0 if used.
DEFAULT_A_buy_value = -10 ? buy zone begins 10% (of width) below LOWBB line. Ask price must be less than or equal to this value. DEFAULT_A_buy_value_limit must be less than -10.

-------------------------------------------------------------------------------------------------
on/off
HIGHBB


This buy/sell strategy is true when current ask/bid price goes above the HIGHBB threshold you specify.
BB values are percentages of the BB width. Width = HIGHBB - LOWBB and a buy_value/sell_value of +/-10 represents 10% of this width.
For a coin to be bought/sold using HIGHBB, the ask/bid price must be greater than or equal to the value of the HIGHBB price multiplied by (1 - buy_value/sell_value expressed as a percentage).
The Numbers

Valid Values: integers from 100 to -100

100 = 100% of the BB width below HIGHBB. i.e. on the LOWBB line
50 = 50% of the BB width below HIGHBB. i.e halfway between HIGHBB and LOWBB
0 = on the HIGHBB line
-50 = 50% of the BB width above HIGHBB
-100 = 100% of the BB width above HIGHBB
Lower values are more conservative for buying and higher values are more conservative for selling.

The Parameters

BB_std
BB_candle_period
BB_Length
The Formula

negative buy/sell_value

Buy/sell Price >= HIGHBB + ((HIGHBB - LOWBB) * ABS(buy/sell_value)/100)
positive buy/sell_value

Buy/sell Price >= HIGHBB - ((HIGHBB - LOWBB) * ABS(buy/sell_value)/100) 


Examples

DEFAULT_A_buy_value = 20 ? buy zone begins 20% (of width) below the HIGHBB line. Ask price must be greater than or equal to this value. DEFAULT_A_buy_value_limit must be greater than 20 if used.
DEFAULT_A_buy_value = -10 ? buy zone begins 10% (of width) above the HIGHBB line. Ask price must be greater than or equal to this value. DEFAULT_A_buy_value_limit must be greater than -10 including positive numbers if used.
DEFAULT_DCA_B_sell_value = 0 ? sell zone begins right on top of the HIGHBB line. Bid price price must be greater than or equal to this value. 


-------------------------------------------------------------------------------------------------
on/off
GAIN



This MANDATORY sell strategy is true when current profit is greater than or equal to buy_value.

GAIN acts as the minimum profit level you are targeting and as such it is required that GAIN be used as one of the sell strategies you use. The sell_value is a percentage of profit that must be reached. When calculating the price required to make this amount of profit the bot also accounts for fees (on Binance the bot assumes the full fee, not the BNB discounted fee.)

The Profit % (P%) column in pairs and DCA Logs shows the fee corrected current profit using the highest bid price and also the highest bid price with enough volume if DEFAULT_min_orderbook_profit_percentage is used.

The Numbers

Valid Values: Decimal values equal to or greater than 0

0.5 = 0.5% profit after exchange maximum fees
1 = 1% profit after exchange maximum fees
2.85 = 2.85% profit after exchange maximum fees
The Formula

Sell Price >= (average bought price * (1 + sell_value/100) + fees


Examples

DEFAULT_A_sell_value = 1 ? sell zone begins 1% above the average bought price plus fees. Bid price must be greater than or equal to this value.


-------------------------------------------------------------------------------------------------
on/off
LOSS




This buy strategy is true when the price of the coin has dropped by the set percentage in the last 24 hours. The percentage is the 24h change specified by your exchange.

The Numbers

Valid Values: positive or negative decimal values.

A positive buy valueis converted to negative however buy_value_limit needs to be negative. For simplicity use negatives for both.

3 = 3% loss over 24 hours
-3 = 3% loss over 24 hours
-7.5 = 7.5% loss over 24 hours
The Formula

Buy Price <= (price 24 hours ago) * (1-ABS(buy_value)/100)


Examples

DEFAULT_A_buy_value = -7 ? buy zone begins 7% below the price from 24 hours ago. Ask price must be less than or equal to this value. DEFAULT_A_buy_value_limit must be less than -7 if used.
DEFAULT_A_buy_value = 7 ? positive numbers are converted to negative. So result is the same as above.


-------------------------------------------------------------------------------------------------
on/off
SMAGAIN



This buy/sell strategy is true when the current ask/bid price is above (positive buy/sell_value) or below (negative buy/sell_value) the lowest of the two SMA lines specified. It does not matter if the fast or slow SMA line is lower, the bot always looks at the value of the lower line.

If a positive value is used the ask/bid price must be greater than or equal to the value of the lower SMA band multiplied by (1 + buy/sell_value expressed as a percentage).
If a negative value is used the ask/bid price must be less than or equal to the value of the lower SMA band multiplied by (1 + buy/sell_value expressed as a percentage).

The Numbers

Valid Values: positive or negative decimal values.

1 = 1% of the price above the lowest of the two SMA lines
0 = Right on top of the lowest SMA line.
-0.5 = 0.5% of the price below the lowest of the two SMA lines
The Parameters

SMA_candle_period
SMA_fast_length
SMA_slow_length
The Formula

Positive buy/sell_value

buy/sell price >= lowest SMA * (1 + ABS(buy/sell_value/100))
Negative buy/sell_value

buy/sell price <= lowest SMA * (1 - ABS(buy/sell_value/100))


Examples

DEFAULT_A_sell_value = 0.8 ? sell zone begins 0.8% (of the price) above the lowest SMA line. Bid price must be equal to or greater than this value. DEFAULT_A_buy_value_limit must be greater than 0.8 if used.
DEFAULT_A_buy_value = 0 ? buy zone begins on the lowest SMA line. Ask price must be greater than or equal to this value. DEFAULT_A_buy_value_limit must be greater than 0 if used.
DEFAULT_DCA_B_buy_value = -1 ? buy zone begins 1% (of the price) below the lowest SMA line. Ask price must be less than or equal to this value. 


-------------------------------------------------------------------------------------------------
on/off
EMAGAIN



This buy/sell strategy is true when the current ask/bid price is above (positive buy/sell_value) or below (negative buy/sell_value) the lowest of the two EMA lines specified. It does not matter if the fast or slow EMA line is lower, the bot always looks at the value of the lower line.

If a positive value is used the ask/bid price must be greater than or equal to the value of the lower EMA band multiplied by (1 + buy/sell_value expressed as a percentage).
If a negative value is used the ask/bid price must be less than or equal to the value of the lower EMA band multiplied by (1 + buy/sell_value expressed as a percentage).

The Numbers

Valid Values: positive or negative decimal values.

1 = 1% of the price above the lowest of the two EMA lines
0 = Right on top of the lowest EMA line.
-0.5 = 0.5% of the price below the lowest of the two EMA lines
The Parameters

EMA_candle_period
EMA_fast_length
EMA_slow_length
The Formula

Positive buy/sell_value

buy/sell price >= lowest EMA * (1 + ABS(buy/sell_value/100))
Negative buy/sell_value

buy/sell price <= lowest EMA * (1 - ABS(buy/sell_value/100))


Examples

DEFAULT_A_sell_value = 0.8 ? sell zone begins 0.8% (of the price) above the lowest EMA line. Bid price must be equal to or greater than this value. DEFAULT_A_buy_value_limit must be greater than 0.8 if used.
DEFAULT_A_buy_value = 0 ? buy zone begins on the lowest EMA line. Ask price must be greater than or equal to this value. DEFAULT_A_buy_value_limit must be greater than 0 if used.
DEFAULT_DCA_B_buy_value = -1 ? buy zone begins 1% (of the price) below the lowest EMA line. Ask price must be less than or equal to this value. 


-------------------------------------------------------------------------------------------------
on/off
SMASPREAD


This buy/sell strategy is true when the spread between fast and slow SMA is larger (bigger spread) than or equal to the buy/sell_value.

With SMASPREAD the current price does not matter, only the magnitude of the spread.

The Numbers

Valid Values: positive or negative decimal numbers.

The Parameters

SMA_candle_period
SMA_fast_length
SMA_slow_length
The Formula

Spread = (SMA2 / SMA1 - 1) * 100


Examples

DEFAULT_A_buy_value = -0.5 ? buy strategy is true when the calculated spread is -0.5% or larger. (Fast SMA is LOWER than Slow SMA). DEFAULT_A_buy_value_limit must be less than -0.5 if used. 
DEFAULT_A_sell_value = 0.6 ? sell strategy is true when the calculated spread is 0.6% or larger. (Fast SMA is HIGHER than Slow SMA)
? Use TradingView to visualize SMASPREAD with this indicator.


-------------------------------------------------------------------------------------------------
on/off
EMASPREAD



This buy/sell strategy is true when the spread between fast and slow EMA is larger (bigger spread) than or equal to the buy/sell_value.

With EMASPREAD the current price does not matter, only the magnitude of the spread.

The Numbers

Valid Values: positive or negative decimal numbers.

The Parameters

EMA_candle_period
EMA_fast_length
EMA_slow_length
The Formula

Spread = (EMA2 / EMA1 - 1) * 100


Examples

DEFAULT_A_buy_value = -0.5 ? buy strategy is true when the calculated spread is -0.5% or larger. (Fast EMA is LOWER than Slow EMA). DEFAULT_A_buy_value_limit must be less than -0.5 if used. 
DEFAULT_A_sell_value = 0.6 ? sell strategy is true when the calculated spread is 0.6% or larger. (Fast EMA is HIGHER than Slow EMA)


-------------------------------------------------------------------------------------------------
on/off
SMACROSS



This buy/sell strategy is true when the SMA lines have crossed and the spread is larger (bigger spread) than or equal to the buy/sell_value.

The direction of the cross is important. If a positive buy/sell_value is used the fast SMA line must have crossed above the slow EMA line. If a negative buy/sell_value is used the fast SMA line must have crossed below the slow EMA line.

The cross must take place within the number of cross_candles specified also.

The Numbers

Valid Values: Positive or negative decimal values.

The Parameters

SMA_cross_candles
SMA_candle_period
SMA_fast_length
SMA_slow_length
The Formula

A cross must have occurred within the number of SMA_cross_candles specified and:

Spread = (SMA2 / SMA1 - 1) * 100


Examples

SMA_cross_candles = 5

DEFAULT_A_buy_value = -0.2? buy strategy is true when the calculated spread is -0.2% or larger (Fast SMA is LOWER than Slow SMA) and the Fast SMA crossed below the slow SMA within the last 5 candles (excluding the current candle). DEFAULT_A_buy_value_limit must be less than -0.2 if used. 
DEFAULT_A_sell_value = 0.6 ? sell strategy is true when the calculated spread is 0.6% or larger (Fast SMA is HIGHER than Slow SMA) and the Fast SMA crossed above the slow SMA within the last 5 candles (excluding the current candle).

-------------------------------------------------------------------------------------------------
on/off
EMACROSS



This buy/sell strategy is true when the EMA lines have crossed and the spread is larger (bigger spread) than or equal to the buy/sell_value.

The direction of the cross is important. If a positive buy/sell_value is used the fast EMA line must have crossed above the slow EMA line. If a negative buy/sell_value is used the fast EMA line must have crossed below the slow EMA line.

The cross must take place within the number of cross_candles specified also.

The Numbers

Valid Values: Positive or negative decimal values.

The Parameters

EMA_cross_candles
EMA_candle_period
EMA_fast_length
EMA_slow_length
The Formula

A cross must have occurred within the number of EMA_cross_candles specified and:

Spread = (EMA2 / EMA1 - 1) * 100


Examples

EMA_cross_candles = 5

DEFAULT_A_buy_value = -0.5? buy strategy is true when the calculated spread is -0.5% or larger (Fast EMA is LOWER than Slow EMA) and the Fast EMA crossed below the slow EMA within the last 5 candles (excluding the current candle). DEFAULT_A_buy_value_limit must be less than -0.5 if used. 
DEFAULT_A_sell_value = 0.6 ? sell strategy is true when the calculated spread is 0.6% or larger (Fast EMA is HIGHER than Slow EMA) and the Fast EMA crossed above the slow EMA within the last 5 candles (excluding the current candle).


-------------------------------------------------------------------------------------------------
on/off
RSI


This buy/sell strategy is true when the RSI value is less than or equal to the buy_value or is greater than or equal to the sell_value.

RSI as a buy strategy is true if buy_value > RSI > buy_value_limit.

RSI as a sell strategy is true if sell_value < RSI.

The Relative Strength Index is a momentum oscillator that measures the speed and change of price movements. It is a commonly used and very popular indicator and works well when paired with Bollinger Bands. The default and typically used RSI_length for RSI is 14, lowering increases sensitivity, raising decreases it. RSI is typically considered overbought when above 70 and oversold when below 30.

More can be learned about this indicator here: http://stockcharts.com/school/doku.php?id=chart_school:technical_indicators:relative_strength_index_rsi

The Numbers

Valid Values: Integers between 0 and 100

The Parameters

RSI_candle_period
RSI_length
The Formula

                  100
    RSI = 100 - --------
                 1 + RS
 
    RS = Average Gain / Average Loss


Examples

DEFAULT_A_buy_value = 20 ? buy zone begins when the RSI value is less than or equal to 20. DEFAULT_A_buy_value_limit must be less than 20 if used.
DEFAULT_A_sell_value = 80 ? sell zone begins when the RSI value is greater than or equal to 80. 
DEFAULT_DCA_B_buy_value = 30 ? DCA buy zone begins when the RSI value is less than or equal to 30. DEFAULT_DCA_A_buy_value_limit_DEFAULT_DCA_B_buys_value_limit must be less than 30 if used.


-------------------------------------------------------------------------------------------------
on/off
STOCH



This buy/sell strategy is true when: buy_value < calculated STOCH < buy_value_limit

A summary definition from this at StockCharts.com (there is a great deal of in depth information in this article):

The Stochastic Oscillator is a momentum indicator that shows the location of the close relative to the high-low range over a set number of periods. STOCH follows the speed or the momentum of price. As a rule, the momentum changes direction before price. STOCH is also used to identify bull and bear set-ups to anticipate a future reversal. Because the Stochastic Oscillator is range bound, is also useful for identifying overbought and oversold levels.

The Numbers

Valid Values: STOCH ranges from 0 to 100, since it is calculated as a percentage.

The Parameters

STOCH_length
STOCH_candle_period
The Formula

Stochastics is measured with the %K line and the %D line.

It is the %D line that we use in PT, for it will indicate any major signals in the chart. The formula for the more important %D line looks like this:

%D = 100 X (H3/L3)
Mathematically, the %K line looks like this:

%K = 100[(C – L)/(H – L)]
C = the most recent closing price
L = the low of the STOCH_length previous trading sessions
H = the highest price traded during the same STOCH_length period.


Examples

DEFAULT_A_buy_value = 20 ? buy zone begins when the STOCH value is less than or equal to 20. DEFAULT_A_buy_value_limit must be less than 20 if used.
DEFAULT_A_sell_value = 80 ? sell zone begins when the STOCH value is greater than or equal to 80.
DEFAULT_DCA_B_buy_value = 30 ? DCA buy zone begins when the STOCH value is less than or equal to 30. DEFAULT_DCA_B_buy_value_limit must be less than 30 if used.


-------------------------------------------------------------------------------------------------
on/off
STOCHRSI


This buy/sell strategy is true when

From this article on StockCharts.com (much more info here, please read):

StochRSI is an oscillator that measures the level of RSI relative to its high-low range over a set time period. StochRSI applies the Stochastics formula to RSI values, instead of price values. This makes it an indicator of an indicator. The result is an oscillator that fluctuates between 0 and 1.

Traders looking to enter a stock based on an overbought or oversold reading in RSI might find themselves continuously on the sidelines. Chande and Kroll developed StochRSI to increase sensitivity and generate more overbought/oversold signals. A move above 0.80 is considered overbought, while a move below 0.20 is considered oversold. Second, it can be used to identify the short-term trend.

The Numbers

Valid Values: Values between 0 and 1 are valid.

The Parameters

RSI_candle_period
RSI_length
STOCH_length
The Formula

StochRSI = (RSI - Lowest Low RSI) / (Highest High RSI - Lowest Low RSI)


Examples

DEFAULT_A_buy_value = 0.2 - Triggers “true” when the calculated value falls to 0.2 or below. 
DEFAULT_A_sell_value = 0.8 - Triggers “true” when the calculated value rises to 0.8 or above. 
DEFAULT_DCA_B_buy_value = 0.3 ? Triggers “true” when the calculated value falls to 0.3 or below. 


-------------------------------------------------------------------------------------------------
on/off
MACD



This buy/sell strategy is true when the MA lines have crossed and the spread/divergence/convergence is larger (bigger spread) than or equal to the buy/sell_value.

If a positive buy/sell_value is used the fast MA line must be above the slow MA line. If a negative buy/sell_value is used the fast MA line must be below the slow MA line. From this article at Investopedia.com (much more info here, please read):

Moving average convergence divergence (MACD) indicators can be interpreted using three different methods: Crossover, Dramatic Rise, and Divergence. It is the first method, Crossover, that we are using in PT.

Crossover - When the MACD falls below the signal line (is negative in our implementation), it is a bearish signal, which indicates that it may be time to sell. Conversely, when the MACD rises above the signal line (is positive), the indicator gives a bullish signal, which suggests that the price of the asset is likely to experience upward momentum. Many traders wait for a confirmed cross above the signal line before entering into a position to avoid getting “faked out” or entering into a position too early, as shown by the first arrow.

The Numbers

Valid Values: Positive or negative decimal values (9 decimal places)

The Parameters

MACD_candle_period
Longer candle periods tend to work better for MACD.

MACD_fast_length
MACD_slow_length
MACD_signal
The values of 12, 26 and 9 are the typical fast, slow, signal setting used with the MACD, however other values can be substituted depending on your trading style and goals.

The Formula

MACD Line: (MACD_fast_length - MACD_slow_length)
 
Signal Line: MACD_signal (days) EMA of MACD Line
 
MACD Histogram: MACD Line - Signal Line


Examples

MACD_candle_period= 900 
MACD_fast_length = 12
MACD_slow_length = 26
MACD_signal = 9
DEFAULT_A_buy_value = 0.0000002 ? Triggers “true” when the calculated value of MACD is 0.000000200 or greater. DEFAULT_A_buy_value_limit must be greater than 0.0000002 if used. 
DEFAULT_DCA_A_buy_value = 0.0000003 ? Triggers “true” when the calculated value is 0.000000300 or greater. DEFAULT_DCA_A_buy_value_limit must be greater than 0.0000003 if used.

DEFAULT_A_sell_value = -0.0000002 ? Triggers “true” when the calculated value of MACD falls to -0.000000200 or less. 
DEFAULT_DCA_A_sell_value = -0.0000003 ? Triggers “true” when the calculated value of MACD falls to -0.000000300 or less.


-------------------------------------------------------------------------------------------------
on/off
BBWIDTH



This buy/sell strategy is true when the BBWIDTH is =< the buy_value or >= the sell_value.

From this article at StockCharts.com (much more info here, please read):

Bollinger BandWidth is an indicator derived from Bollinger Bands.

BandWidth measures the percentage difference between the upper band and the lower band. BandWidth decreases as Bollinger Bands narrow and increases as Bollinger Bands widen. Because Bollinger Bands are based on the standard deviation, falling BandWidth reflects decreasing volatility and rising BandWidth reflects increasing volatility.

Bollinger Bands consist of a middle band with two outer bands. The middle band is a simple moving average usually set at 20 periods. The outer bands are usually set 2 standard deviations above and below the middle band. Settings can be adjusted to suit the characteristics of particular securities or trading styles.

Bollinger BandWidth is best known for identifying The Squeeze. This occurs when volatility falls to a very low level, as evidenced by the narrowing bands. The upper and lower bands are based on the standard deviation, which is a measure of volatility. The bands narrow as price flattens or moves within a relatively narrow range. The theory is that periods of low volatility are followed by periods of high volatility. Relatively narrow BandWidth (a.k.a. the Squeeze) can foreshadow a significant advance or decline. After a Squeeze, a price surge and subsequent band break signal the start of a new move. A new advance starts with a Squeeze and subsequent break above the upper band. A new decline starts with a Squeeze and subsequent break below the lower band.

Using BBWIDTH with HIGHBB, where the coin breaks the upper band is a good possible use of this indicator.

The Numbers

Valid Values: Positive decimal values.

BBWIDTH should be set per coin, as it varies based on each coin's particular behavior.

The Parameters

BB_std
BB_candle_period
BB_length
The Formula

( (Upper Band - Lower Band) / Middle Band) * 100


Examples

DEFAULT_A_buy_value = 0.5 ? buy zone begins when BBWIDTH is less than or equal to buy_value. DEFAULT_A_buy_value_limit must be less than 0.5 if used.
DEFAULT_DCA_A_buy_value = 0.5 ? True when BBWIDTH is less than or equal to buy_value. DEFAULT_DCA_A_buy_value_limit must be less than 0.5 if used.
DEFAULT_A_sell_value = 0.5 ? sell zone begins when BBWIDTH is greater than or equal to sell_value.


-------------------------------------------------------------------------------------------------
on/off
OBV



This buy\sell strategy is true when: ?

If buy_value >= 0: 
buy_value ?? OBV ? buy_value_limit

If buy_value < 0:
buy_value ?>= OBV >= ?buy_value_limit

If sell_value >= 0:
sell_value >= OBV >= buy_value_limit

If sell_value < 0: 
sell_value ? OBV ? buy_value_limit

On Balance Volume (OBV) measures buying and selling pressure as a cumulative indicator that adds volume on up days and subtracts volume on down days. It was one of the first indicators to measure positive and negative volume flow. Chartists can look for divergences between OBV and price to predict price movements or use OBV to confirm price trends.

OBV for PT is calculated as the difference between the first volume amount captured (from OBV_length periods), and the signal candle (from OBV_signal), in percentage.

In PT, only the past 500 candles of volume are available, so OBV_length must be less than 500 (499 max).

The Numbers

Valid Values: Positive or negative decimal values.

The Parameters

OBV_candle_period
OBV_length - Must be less than 500
OBV_signal - Must be less than OBV_length
The Formula

If the closing price is above the prior close price then: 
Current OBV = Previous OBV + Current Volume
 
If the closing price is below the prior close price then: 
Current OBV = Previous OBV  -  Current Volume
 
If the closing prices equals the prior close price then:
Current OBV = Previous OBV (no change)
 
OBV-value = [ OBV_length - OBV_signal ] / absolute(OBV_signal)


Examples

DEFAULT_A_buy_value = -0.001 ? buy zone begins …… DEFAULT_A_buy_value_limit = -0.005 must be less than -0.001 if used.
DEFAULT_A_buy_value = 0.001 ? buy zone begins …… DEFAULT_A_buy_value_limit = 0.005 must be greater than 0.001 if used.


-------------------------------------------------------------------------------------------------
on/off
ANDERSON



Anderson-DCA was an idea by a team member (called yea Anderson..lol) that was implemented in the early days of ProfitTrailer. The idea was that you could make DCA buys using different triggers each time to try to get out of a bad position faster instead of using a specific indicator.

These days every strategy uses the same buy_trigger parameters as ANDERSON so there is no benefit (or harm) using it alongside other strategies. However if you don't wish to use any other strategy you can still choose good old ANDERSON.

This DCA only buy strategy is true when the price of a coin has dropped by the specified buy_trigger percentage relative to the average price you have paid for your current holding.

The Numbers

Valid Values: ANDERSON is unique in that it does not use a buy_value, only the buy_trigger that is common to all strategies.

The Formula

buy price <= Average Price * (1 - buy_trigger/100)


Examples
DEFAULT_DCA_A_buy_strategy = ANDERSON
DEFAULT_DCA_buy_trigger = -3
DEFAULT_DCA_buy_trigger_1 = -2
DEFAULT_DCA_buy_trigger_2 = -3.5
DEFAULT_DCA_buy_trigger_3 = -4
DEFAULT_DCA_trailing_buy = 0.2


In this scenario the DCA level specific triggers will be used for the first three DCA buys. After that, if the bot is allowed to buy more times, the DEFAULT trigger will be used for each level.

In our example the bot buys a coin for whatever price using the strategies defined in pairs.properties. Now the bot looks at the lowest ask price in the order book and watches to see if it drops below our buy_trigger. Once the Ask price goes below -2 the bot looks to trail back up by the trailing_buy amount. (See A Traling Story for more info on trailing)

If it successfully trails and is still below the buy_trigger ProfitTrailer tries to buy. After a successful DCA buy the average price is recalculated. and the bot now looks for the ASK price to drop -3.5% from the new average price. And so the process is repeated.

For the 4th buy onwards the default value of -3 will be used indefinitely as no level specific value has been set.

응답함

1
개발자 1
등급
(22)
프로젝트
28
29%
중재
3
0% / 67%
기한 초과
7
25%
무료
2
개발자 2
등급
(119)
프로젝트
127
41%
중재
3
33% / 67%
기한 초과
0
무료
4
개발자 4
등급
(8)
프로젝트
12
0%
중재
21
0% / 81%
기한 초과
4
33%
무료
비슷한 주문
I need stochastic div (hidden &regular ea) that should perform task in all tf's ..divergence is a repaint stly so i want to use it with candlestick flips .. so bet for it
Hello, I have an indicator from a friend and I'd like to replicate it on my own TradingView or MT5 platform. Could you assist me with that?. Here is the link
so basically I have an EA(mql5), AI script(python), flask server and socket server both on python. Now this is an experimental script as I am trying to learn. However the EA is not entering any trades. How much would it cost for you to troubleshoot this for me? Thank you in advance
NEW FUNCTION 50+ USD
La idea es la siguiente, sería un EA semi automático. Yo como trader opero en zonas. En adelante las vamos a denominar ``zonas calientes´´. El EA debe que necesito debe operar conforme a 4 zonas calientes que yo configure en el mismo. ¿Qué hará el EA en cada una de esas zonas calientes que yo he configurado? En cada una de estas zonas el EA debe realizar hedging (crear un rango en el cual el EA entrara en sell o en
I have the bot just over half made, from another developer who let me down and decided they no longer wished to finish the project, so I have a basic example of the fundamentals of what it could look like, although multiple functions I require do not work, but I can show this to you on request. There are multiple features that I require, so please read the in depth requirement sheet on the attachment. Function: To
I need EA that works on MT5 to be able to do the following: - Can recognize Support/Resistance area - Can recognize VWAP direction. - Can recognize RSI. - Can recognize Double Top/bottom, Bullish/Bearish hammer candle, Bullish/bearish engulfing candle. - Ability to set Stoploss below/above support/resistance, but risk must be fixed at a certain price. - Stoploss
I want a program that will help calculate and enter the market on full margin for me. I just need to put in the price for entry, Stop loss and TP then it will calculate the lot sizes for entering the trade on full margin on Mt5
"I need an expert advisor (EA) based on stochastic divergence and candlestick formation. It should be able to identify both hidden and regular divergences. The EA should also include modified risk-reward ratios, modified timeframes, and a trailing stop loss. It is important that the EA is 100% accurate. Once an experienced developer applies, I will share the complete strategy."
I am seeking a highly skilled and experienced developer to assist with an important project. I need a development of an automated trading bot for NinjaTrader, utilizing a 4 SMA (Simple Moving Average) crossing strategy, with additional custom diversions for trade entries. The bot needs to be based on a strategy involving the crossing of four different SMAs. The exact periods for these SMAs and the conditions for
I need someone that can make expert advisor for backtesting purpose. The input file is History trade report export file from MQl5 the expert advisor should open position the exact time of open trade on the report. The same as the close time

프로젝트 정보

예산
30 - 70 USD
VAT (19%): 5.7 - 13.3 USD
총: 35.7 - 83.3 USD
개발자에게
27 - 63 USD
기한
에서 1  15 일