This strategy is very simple.
The basic idea of this program is to analyze candles on a chart in a
short time period and to open a order when the condition has been
meet.
The condition is:
- open a "sell order" when 4 candles in a raw are "red".
or
- open a "buy order" when 4 candles in a raw are "green".
The strategy program work like this:
-candles analyze is on a EUR/JPY chart in a 15 min time period.
-trade amount is of 10 millions
-stop loss is of 156 pips and take profit is of 33 pips
-i use 5 "Get Historical Candle" blocks; one for each candle
-for each candle to get average price i use "Calculation Expression"
-this make a sum between open price and close price and split in half

-now i have 5 prices (numbers)
-after i use 4 "Calculation" blocks
-on each block i make a subtraction between first price and second
price from "Calculation Expression" blocks
-now i have 4 "candles"
-with "if" block is set the condition(rule)
-so if first "candle"(number form first "Calculation" block) is
greater than second "candle"(number from second "Calculation" block)
and second "candle" is greater than third "candle" and third "candle"

is greater than fourth "candle" then the program open a SELL order
with "Open at Market" block
-if first "candle" is less than second "candle" and second "candle"
is
less than third "candle" and third "candle" is less than fourth
"candle" then the program open a BUY order with "Open at Market"
block
-once a order is open the program will open another order after the
opened order is closed

Translate to English Show original