Hong Ling Mu / Profile
- Information
|
3 years
experience
|
60
products
|
28
demo versions
|
|
0
jobs
|
0
signals
|
0
subscribers
|
This robot is equipped with trend-following logic. Specifically, it detects trends using the Parabolic Indicator and identifies when prices move significantly compared to normal fluctuations. You can input a desired number of pips (Price GAP pips) to determine at what price fluctuation the entry should occur. In case the trend reverses, all open orders will be closed. The number of simultaneous orders you can hold is customizable. Additionally, if you have multiple orders, they will all close
// Print("現在の価格よりも上にある最も近い短冊のオブジェクト名: ", nearest_above_rectangle);
// 現在の価格よりも下にある最も近い短冊のオブジェクト名を表示
// Print("現在の価格よりも下にある最も近い短冊のオブジェクト名: ", nearest_below_rectangle);
}
This EA utilizes Bollinger Bands logic to execute trades. Here's how it works: When the closing price surpasses the upper band of the Bollinger Bands, it counts as a SELL signal. When the closing price falls below the lower band of the Bollinger Bands, it counts as a BUY signal. Trades are not executed immediately upon receiving a signal. Instead, the EA waits until the number of such outliers exceeds a certain threshold. This helps in avoiding unnecessary entries as much as possible

