리소스 로딩... 로딩...

MyLanguage

이 플랫폼은 MyLanguage에서 작성 및 디자인 전략을 지원하며, 이는 Wenhua MyLanguage의 대부분의 문법, 명령어 및 기능과 호환됩니다. MyLanguage는 복잡한 알고리즘을 함수로 분해하는 빌딩 블록 프로그래밍을 장려합니다. 간결한 문법, 전문 데이터 구조 및 강력한 금융 함수 라이브러리를 통해 복잡한 금융 논리 응용 프로그램을 지원합니다. 효율성과 유지 관리를 향상시키기 위해 모듈 방식으로 응용 프로그램을 구축하십시오.

MyLanguage 전략 예제: 번역 볼링거 채널에 기반한 시스템

M := 12; // Parameter range 1, 20
N := 3; // Parameter range 1, 10
SDEV := 2; // Parameter range 1, 10
P := 16; // Parameter range 1, 20
//The strategy is a trend-following trading strategy for larger periods, such as daily.
//This model is only used as a case study for model development, and entering the market accordingly will be at your own risk.
////////////////////////////////////////////////////////
//Panning BOLL Channel Calculation
MID:=MA(C,N);//Calculate the middle track       
TMP:=STD(C,M)*SDEV;//Calculate the standard deviation
DISPTOP:=REF(MID,P)+TMP;//Translate BOLL channel upper track
DISPBOTTOM:=REF(MID,P)-TMP;//Translate BOLL channel down track
//System admission
H>=DISPTOP,BPK;
L<=DISPBOTTOM,SPK;
AUTOFILTER;
C++ 소나무 언어