Updated Buying and Selling (markdown)
parent
772e821dc0
commit
2cc16917fb
|
@ -44,7 +44,7 @@ Stategy = `EMASPREAD`
|
||||||
EMASPREAD value is a percentage spread difference between EMA1 (slow) and EMA2 (fast)
|
EMASPREAD value is a percentage spread difference between EMA1 (slow) and EMA2 (fast)
|
||||||
Calculation: (EMA2 / EMA1 - 1) * 100% -> result of this calculation is the spread
|
Calculation: (EMA2 / EMA1 - 1) * 100% -> result of this calculation is the spread
|
||||||
Possible buy values example
|
Possible buy values example
|
||||||
-1 -> buy if the current spread is -1% or bigger (EMA2 is lower than EMA1)
|
-1 -> buy if the current spread is -1% or smaller (EMA2 is lower than EMA1)
|
||||||
1 -> buy if the current spread is 1% or bigger (EMA2 is higher than EMA1)
|
1 -> buy if the current spread is 1% or bigger (EMA2 is higher than EMA1)
|
||||||
|
|
||||||
Buy as soon as SMA spread reaches your specified value.
|
Buy as soon as SMA spread reaches your specified value.
|
||||||
|
@ -52,7 +52,7 @@ Stategy = `SMASPREAD`
|
||||||
SMASPREAD value is a percentage spread difference between SMA1 (slow) and SMA2 (fast)
|
SMASPREAD value is a percentage spread difference between SMA1 (slow) and SMA2 (fast)
|
||||||
Calculation: (SMA2 / SMA1 - 1) * 100% -> result of this calculation is the spread
|
Calculation: (SMA2 / SMA1 - 1) * 100% -> result of this calculation is the spread
|
||||||
Possible buy values example
|
Possible buy values example
|
||||||
-1 -> buy if the current spread is -1% or bigger (SMA2 is LOWER than SMA1)
|
-1 -> buy if the current spread is -1% or smaller (SMA2 is LOWER than SMA1)
|
||||||
0.5 -> buy if the current spread is 0.5% or bigger (SMA2 is HIGHER than SMA1)
|
0.5 -> buy if the current spread is 0.5% or bigger (SMA2 is HIGHER than SMA1)
|
||||||
|
|
||||||
# Selling
|
# Selling
|
||||||
|
|
Loading…
Reference in New Issue