개요
MQL5의 문자열 출력함수들.
Alert
Comment
MessageBox
Print
Alert
- 문자열을 Alert 창의 리스트에 추가 표현한다.
Alert 창 : 아래 그림의 붉은 박스 부분.

동영상.
- 기본 초기 생성된 EA에서 Alert 코드 추가, 동작확인.
Comment
- 챠트의 왼쪽 상단에 문자열 출력.

- 챠트의 왼쪽 상단 아래그림 붉은박스 부분.

동영상.
- EA OnTick함수내에서 Comment("OnTick"); 작성하고 시험.
Code Example
- Ask, Bid, Spread를 Comment 로 표시하는예.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void OnTick() | |
{ | |
double Ask,Bid; | |
int Spread; | |
Ask=SymbolInfoDouble(Symbol(),SYMBOL_ASK); | |
Bid=SymbolInfoDouble(Symbol(),SYMBOL_BID); | |
Spread=SymbolInfoInteger(Symbol(),SYMBOL_SPREAD); | |
Comment(StringFormat("Show prices\nAsk = %G\nBid = %G\nSpread = %d",Ask,Bid,Spread)); | |
} |
실행결과화면.
MessageBox
- 팝업창 1개 보이면서 문자열 출력.
팝업창 : 아래 그림의 붉은 박스 창.
동영상.
- EA에 함수 MessageBox 추가하고 동작 확인.
- 메타트레이더 5의 Toolbox 의 탭 Expert 에 문자열 표현한다.
- Toolbox의 Experts 부분 : 아래 그림.
상위 정리글.
메타트레이더 5 체계정리. 활용법/지식 : http://igotit.tistory.com/1775
메타트레이더 5. 체계정리. 활용법/지식
MetaTrader 5 메타트레이더 5 , 메타에디터, MQL5 활용정보 체계정리. 본 글에서 주요 정리대상 정보 1. 메타트레이더 5 사용법. 2. MQL5 언어 기반 "직접 코딩"하여 메타프레이더5에서 자동매매 달성하기
igotit.tistory.com
첫 등록 : 2018.08.23
최종 수정 : 2022.07.27
단축 주소 : https://igotit.tistory.com/1813
'트레이딩 > 메타트레이더 코딩' 카테고리의 다른 글
메타트레이더 5. MQL5. 클래스 CTrade. 주문처리. (2) | 2018.08.25 |
---|---|
메타트레이더 . MQL5 Storage. 원격저장소. 버전 관리. (0) | 2018.08.25 |
메타트레이더 5. MQL5.Code Example. OnChartEvent. mouse, key. (0) | 2018.08.24 |
메타트레이더 5. MQL5 주문함수. OrderSend (9) | 2018.08.23 |
메타트레이더 5. MetaEditor. MQL5 EA 생성. (0) | 2018.08.19 |
댓글