10. MA 50

A 50-period moving average is used.

Don't forget that the MA value is considered at the moment the candle closes!

if the signal consists only of MA values, it will be triggered once per bar close

ParameterDescriptionExample

🔴 MA 50 above price

Alert triggers when the 50-period Moving Average (MA50) is above the current closing price.

Alert will trigger if the closing price of BTCUSDT is below the MA50 value.

🟢 MA 50 below price

Alert triggers when the 50-period Moving Average (MA50) is below the current closing price.

Alert will trigger if the closing price of BTCUSDT is above the MA50 value.

Distance from MA50 to price in % greater than

Alert triggers when the percentage distance from the MA50 to the current closing price exceeds a specified value.

If set to "+5%", the alert will trigger when the distance from MA50 to the price is +6%, +10%, +15%, etc. If set to "-5%", the alert will trigger at distances from MA50 to the price of -4%, -3%, 0%, +5%, +10%, etc.

Distance from MA50 to price in % less than

Alert triggers when the percentage distance from the MA50 to the current closing price is less than a specified value.

If set to "+5%", the alert will trigger at distances from MA50 to the price of +4%, +3%, 0%, -1%, -5%, etc. If set to "-5%", the alert will trigger at distances from MA50 to the price of -6%, -10%, -15%, etc.

Distance from price to MA50 in % greater than

Alert triggers when the percentage distance from the current closing price to the MA50 exceeds a specified value.

If set to "+5%", the alert will trigger when the distance from the price to MA50 is +6%, +10%, +15%, etc. If set to "-5%", the alert will trigger at distances from the price to MA50 of -4%, -3%, 0%, +5%, +10%, etc.

Distance from price to MA50 in % less than

Alert triggers when the percentage distance from the current closing price to the MA50 is less than a specified value.

If set to "+5%", the alert will trigger at distances from the price to MA50 of +4%, +3%, 0%, -1%, -5%, etc. If set to "-5%", the alert will trigger at distances from the price to MA50 of -6%, -10%, -15%, etc.

Calculation formulas:

  • Distance from MA to price in % = (Price - MA) / MA * 100

  • Distance from price to MA in % = (MA - Price) / Price * 100

Last updated