0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

備忘録 MetaTrader5

Last updated at Posted at 2019-11-17

MetaTrader5に関するメモ書き

python MetaTrader5モジュールから呼び出しが出来ない件について

事象

python3にMetaTrader5のモジュールをインストールし、Tick情報を定期的に取得するスクリプトを作成したら、下記エラーが発報してMetaTrader5が取得出来なかった。

Traceback (most recent call last):
  File ".\get_tick_sub.py", line 22, in <module>
    MT5WaitForTerminal()
RuntimeError: No IPC connection

原因

私のMetaTrader5アプリはTitanFXが提供している物を利用している。
TitanFXのMetaTraderのアプリ名がMetaTrader5オリジナルの名前と違っていた為、
アプリが見つからず参照エラーを発報していた。

対処方法

TitanFXのMetaTrader5アプリ格納ディレクトリをMetaTrader5オリジナルと同じにする。

TitanFX デフォルトパス

C:\Program Files\Titan FX MetaTrader 5

MetaTrader5 オリジナルパス

C:\Program Files\MetaTrader 5

愚痴

アプリの指定ぐらい引数でいける様にしてほしい
てか設定ファイルとかあればいいのに、、、、
→Python側のMetaTraderモジュールを確認した所、そんなのなかった、、
 てかpydをリバースコンパイルしたい。。

0
1
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?