Updated Buying and Selling (markdown)

taniman 2017-09-24 19:44:22 +02:00
parent a133f0f331
commit 56f77d612a
1 changed files with 18 additions and 0 deletions

@ -37,3 +37,21 @@ 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
# Selling
### Find below all sell strategies currently available
Sell 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 sell values example
20 -> 20% below HIGHBB line
0 -> right on top of the HIGHBB line
-10 -> 10% above LOWBB line
Sell as soon as the current price reaches the profit specified
Stategy = `GAIN`
Possible sell values example
2 -> sell if profit is 2% or more
-10 -> sell if profit is -10% or more