From a133f0f33114bfc36d2b9bffeec9b931f7ef31a9 Mon Sep 17 00:00:00 2001 From: taniman Date: Sun, 24 Sep 2017 18:44:50 +0200 Subject: [PATCH] Created Buying and Selling (markdown) --- Buying-and-Selling.md | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 Buying-and-Selling.md diff --git a/Buying-and-Selling.md b/Buying-and-Selling.md new file mode 100644 index 0000000..e96f460 --- /dev/null +++ b/Buying-and-Selling.md @@ -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