私はビジュアルをより簡単にするいくつかの機能を作った。

void LineMaker(文字列名、カラーLineColor、倍精度文字列、文字列説明){
ObjectCreate(名前、OBJ_HLINE、0、TimeCurrent()、price);
ObjectSet(名前、OBJPROP_STYLE、STYLE_SOLID);
ObjectSet(名前、OBJPROP_COLOR、LineColor);
ObjectSet(名前、OBJPROP_BACK、true);
ObjectSetText(名前、説明、8、Arial、LineColor);
return(0);
}
void LabelMaker(string lblname、int x、int y、文字列ウィンドウ、文字列txt、intサイズ、文字列フォント、色txtcolor){
ObjectCreate(lblname、OBJ_LABEL、WindowFind(window)、0、0);
ObjectSet(lblname、OBJPROP_CORNER、0);
ObjectSet(lblname、OBJPROP_XDISTANCE、x);
ObjectSet(lblname、OBJPROP_YDISTANCE、y);
ObjectSetText(lblname、txt、size、font、txtcolor);
return(0);
}

行を作る例
LineMaker(ライン名、ラインカラー、価格、説明);

ラベルを作る例
LabelMaker(ラベル名、X、Y、独立したウィンドウ名、あなたが何を言いたいか、フォントサイズ、Arial、フォントの色);