La plataforma admite la estrategia de escritura y diseño en MyLanguage, que es compatible con la mayoría de la gramática, comandos y funciones de Wenhua MyLanguage. MyLanguage fomenta la programación de bloques de construcción, que descompone algoritmos complejos en funciones.
Ejemplo de estrategia MyLanguage: Sistema basado en el canal de Bollinger traslacional
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;