Created Buying and Selling (markdown)
parent
aa3b55026d
commit
a133f0f331
|
@ -0,0 +1,39 @@
|
|||
# Buying
|
||||
### Find below all buy strategies currently available
|
||||
|
||||
Buy as soon as the current price goes below the LOWBB line you specified
|
||||
Stategy = `LOWBB`
|
||||
BB values are percentages of the BB width. BB width = HIGHBB - LOWBB
|
||||
Possible buy values example
|
||||
20 -> 20% above LOWBB line
|
||||
0 -> right on top of the LOWBB line
|
||||
-10 -> 10% below LOWBB line
|
||||
|
||||
Buy as soon as the current price goes above the HIGHBB line you specified
|
||||
Stategy = `HIGHBB `
|
||||
BB values are percentages of the BB width. BB width = HIGHBB - LOWBB
|
||||
Possible buy values example
|
||||
20 -> 20% below HIGHBB line
|
||||
0 -> right on top of the HIGHBB line
|
||||
-10 -> 10% above HIGHBB line
|
||||
|
||||
Buy as soon as the pair drops the amount of percentages specified.
|
||||
Stategy = `LOSS`
|
||||
The percentage is the 24h change specified buy your exchange
|
||||
Possible buy values example
|
||||
-7 -> buy if the pair has fallen 7% or more in the last 24h
|
||||
7 -> positive numbers are converted to negative. So result is the same as above
|
||||
|
||||
Buy as soon as the price goes below the specified EMA line.
|
||||
Stategy = `EMAGAIN`
|
||||
EMAGAIN value is a percentage below or above the lowest of the 2 EMA lines
|
||||
Possible buy values example
|
||||
-1 -> buy if the current price is 1% below (or lower) the lowest EMA line
|
||||
1 -> buy if the current price is 1% above (or lower) the lowest EMA line
|
||||
|
||||
Buy as soon as the price goes below the specified SMA line.
|
||||
Stategy = `SMAGAIN`
|
||||
SMAGAIN value is a percentage below or above the lowest of the 2 SMA lines
|
||||
Possible buy values example
|
||||
-3 -> buy if the current price is 3% below (or lower) the lowest SMA line
|
||||
3 -> buy if the current price is 3% above (or lower) the lowest SMA line
|
Loading…
Reference in New Issue