PureBytes Links
Trading Reference Links
|
Hi everyone,
Could someone please rewite this for AmiBroker.
Thank you in advance,
Dennis
TradeStation Code:
Input: Len1(21),Len2(15),Avg1(12),Avg2(3);
Vars: Vix(0),Hvol(0), Btest(false);
Vix = Amafunc2(C of data2,Avg1);
Hvol = Amafunc2(((StdDev(C,Len1)*Len2)/C)*100,Avg2);
Btest = Hvol > Hvol[1] and Vix < Vix[1];
If Hvol crosses above Vix and Btest = true then buy market;
if Hvol < Hvol[1] and Hvol[1] > Hvol[2] then
begin
exitlong;
Btest = false;
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|