策略提示沒有聲音和電子郵件警報(bào) [MC]
-
MC用戶求助:
代碼中需要有alert關(guān)鍵字,當(dāng)條件滿足時(shí),使用alert起動(dòng)警報(bào)并傳遞信息。
當(dāng)收盤價(jià)大于前根K線的收盤價(jià)時(shí),彈出包含靜態(tài)文本的警報(bào)窗口:?
If Close > Close[1] Then
Alert(Text("Price turning up"))??
-
MC回復(fù)討論一:
代碼中需要有alert關(guān)鍵字,當(dāng)條件滿足時(shí),使用alert起動(dòng)警報(bào)并傳遞信息。
當(dāng)收盤價(jià)大于前根K線的收盤價(jià)時(shí),彈出包含靜態(tài)文本的警報(bào)窗口:?
If Close > Close[1] Then
Alert(Text("Price turning up"))??
-
MC回復(fù)討論二:
inputs: AfStep( ), AfLimit(??),adxlen(),level(),stopl(),proft() ;
variables: var0( 0 ), var1( 0 ), var2( 0 ), var3( 0 ) ;
Value1 = ParabolicSAR( AfStep, AfLimit, var0, var1, var2, var3 ) ;
print(ADX(adxlen));
if ADX(adxlen)<level and adx(adxlen)>20 then begin
if var2=-1 then
? ? ? ? ? ? ? ? buy ("b")next bar at var1 stop;
? ? ? ? ? ? ? ??
if var2=1 then
? ? ? ? ? ? ? ? sellshort("s") next bar at var1 stop;
? ? ? ? ? ? ? ??
? ? ? ? ? ? ? ? ? ? ? ??
? ? ? ? end;
if currentcontracts<>0 then begin
setstoploss(stopl*bigpointvalue);
setpercenttrailing(proft*bigpointvalue,5);
end;
麻煩您幫我看看這段代碼怎么添加電子郵件警報(bào),太感謝您了。?
-
MC回復(fù)討論三:
inputs: AfStep( 1), AfLimit( 1 ),adxlen(1),level(1),stopl(1),proft(1) ;
variables: var0( 0 ), var1( 0 ), var2( 0 ), var3( 0 ) ;
Value1 = ParabolicSAR( AfStep, AfLimit, var0, var1, var2, var3 ) ;
print(ADX(adxlen));
condition1=ADX(adxlen)<level and adx(adxlen)>20;
if condition1 then begin
if var2=-1 then
? ?? ?? ?? ?? ? buy ("b")next bar at var1 stop;
? ?? ?? ?? ?? ??
if var2=1 then
? ?? ?? ?? ?? ? sellshort("s") next bar at var1 stop;
alert(text("condition1=",condition1," var2=",var2));? ???//警報(bào)? ?? ?? ?? ?? ?? ???
end;
if currentcontracts<>0 then begin
setstoploss(stopl*bigpointvalue);
setpercenttrailing(proft*bigpointvalue,5);
end;?
-
MC回復(fù)討論四:
inputs: AfStep( 1), AfLimit( 1 ),adxlen(1),level(1),stopl(1),proft(1) ;
variables: var0( 0 ), var1( 0 ), var2( 0 ), var3( 0 ) ;
Value1 = ParabolicSAR( AfStep, AfLimit, var0, var1, var2, var3 ) ;
print(ADX(adxlen));
condition1=ADX(adxlen)<level and adx(adxlen)>20;
if condition1 then begin
if var2=-1 then
? ?? ?? ?? ?? ? buy ("b")next bar at var1 stop;
? ?? ?? ?? ?? ??
if var2=1 then
? ?? ?? ?? ?? ? sellshort("s") next bar at var1 stop;
alert(text("condition1=",condition1," var2=",var2));? ???//警報(bào)? ?? ?? ?? ?? ?? ???
end;
if currentcontracts<>0 then begin
setstoploss(stopl*bigpointvalue);
setpercenttrailing(proft*bigpointvalue,5);
end;
有思路,想編寫各種指標(biāo)公式,程序化交易模型,選股公式,預(yù)警公式的朋友
可聯(lián)系技術(shù)人員 QQ: 511411198 進(jìn)行 有償 編寫!(不貴!點(diǎn)擊查看價(jià)格!)
相關(guān)文章
-
沒有相關(guān)內(nèi)容