0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

MQL4/MQL5の備忘録

Last updated at Posted at 2024-09-22

文字列

文字数問題

なんかよくわからんが駄目

このワンライナー的書き方は、真似してみたが駄目ポイ ↓ 

ArrayResize(data, StringToCharArray(body, data, 0-1, CP_UTF8)-1 );

WebRequest()で文字化けみたいな結果となることがあった。
配列 data が作り変えられてるということなのかな?

分けて書けば問題なかった↓

StringToCharArray(body, data, 0,-1, CP_UTF8);    
ArrayResize(data, ArraySize(data) - 1); 

SHA1について

空文字からの生成は正常にできなさそう。(空文字を渡せないというか)
拙者 空文字でチェックしようとして沼ったでござる。

WebRequest()

※ 使ったのは7引数のほう

  • MT4上でのURL登録必要
    未登録の際のエラーダイアログは出るときと出ないときとある。

  • headersに複数ヘッダーを入れる際のセパレータは「\r\n」すなわちCRLF。
    参考になりました → https://note.com/junico02_se_blog/n/n0eb436a0d493
    (実用に耐える条件で現物を載せてくれるのが一番助かります。)

0
0
0

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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?