11. MA 200

A 200-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 200 above price

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

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

🟢 MA 200 below price

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

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

Distance from MA200 to price in % greater than

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

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

Distance from MA200 to price in % less than

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

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

Distance from price to MA200 in % greater than

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

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

Distance from price to MA200 in % less than

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

If set to "+5%", the alert will trigger at distances from the price to MA200 of +4%, +3%, 0%, -1%, -5%, etc. If set to "-5%", the alert will trigger at distances from the price to MA200 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