見出し画像

chatGPT4について!FXの自動売買も可能!

FXのインジケーターを使う自動売買をGPTで作りました。

// Bollinger Bands Buy/Sell Strategy extern int bb_period = 20; extern double bb_deviation = 2.0; //+------------------------------------------------------------------+ //| Expert initialization function | //+------------------------------------------------------------------+ int OnInit() { return(INIT_SUCCEEDED); } //+------------------------------------------------------------------+ //| Expert tick function | //+------------------------------------------------------------------+ void OnTick() { double upper_band, lower_band; // Calculate Bollinger Bands if (iBands(_Symbol, _Period, bb_period, bb_deviation, 0, PRICE_CLOSE, upper_band, lower_band, 0) > 0) { // Check for a buy signal (price crossing below the lower band) if (iClose(_Symbol, _Period, 0) < lower_band) { // Place a buy order OrderSend(_Symbol, OP_BUY, 0.1, Ask, 3, 0, 0, "Bollinger Buy", 0, 0, Green); } // Check for a sell signal (price crossing above the upper band) if (iClose(_Symbol, _Period, 0) > upper_band) { // Place a sell order OrderSend(_Symbol, OP_SELL, 0.1, Bid, 3, 0, 0, "Bollinger Sell", 0, 0, Red); } } } //+------------------------------------------------------------------+

内容は以下。

ボリンジャーバンドで+3の時は売り、-3の時は買う。
ただそれだけの自動売買のプログラムです。

次は合議システムにしますね。

合議=多数決で決めるということです。


この記事が気に入ったらサポートをしてみませんか?