楼主: 百忍成金
打印 上一主题 下一主题

《期市操盘攸关-短线实战决杀》高清PDF版

  [复制链接]
1421
发表于 2014-3-22 23:49:14 | 只看该作者
{:soso_e179:}

1422
发表于 2014-3-23 16:52:46 来自手机 | 只看该作者
学习学习
回复

使用道具 举报

1423
发表于 2014-3-23 17:24:29 | 只看该作者
好,顶了。

回复

使用道具 举报

1424
发表于 2014-3-23 18:08:45 | 只看该作者
看看再说
回复

使用道具 举报

1425
发表于 2014-3-24 12:24:46 | 只看该作者
非常感谢!
回复

使用道具 举报

1426
发表于 2014-3-24 12:26:55 | 只看该作者
非常感谢!
回复

使用道具 举报

1427
发表于 2014-3-24 16:52:22 | 只看该作者
{:soso_e100:}

1428
发表于 2014-3-24 23:26:13 | 只看该作者
谢谢楼主!!!

回复

使用道具 举报

1429
发表于 2014-3-25 16:06:47 | 只看该作者
好东西一定要顶!
1430
发表于 2014-3-25 16:06:48 | 只看该作者
好东西一定要顶!
1431
发表于 2014-3-25 16:06:54 | 只看该作者
好东西一定要顶!
1432
发表于 2014-3-26 19:21:27 | 只看该作者
very goossssd
1433
发表于 2014-3-26 23:03:12 | 只看该作者
请赐教下载链接

1434
发表于 2014-3-28 15:14:40 | 只看该作者
谢谢,顶一个

1435
发表于 2014-3-28 16:25:04 | 只看该作者
..................

回复

使用道具 举报

1436
发表于 2014-3-31 19:42:02 | 只看该作者
{:soso_e100:}
1437
发表于 2014-4-2 22:36:35 | 只看该作者
学习学习
回复

使用道具 举报

1438
发表于 2014-4-3 16:32:55 | 只看该作者
回复学习一下  。
1439
发表于 2014-4-4 04:23:30 | 只看该作者
新手,求解,求教

1440
发表于 2014-4-4 16:02:23 | 只看该作者
  • Input: Price((H+L)*.5), {???}
  • PtUp(4.), PtDn(4.), {Max correction to change trend}
  • MM_Model(2), {1 = % Risk Model; 2 = % Volatility Model;
  • 3 = Drawdown Model; 4 = Kelly Model; 5 = Williams' Model;
  • 6 = Fixed Ratio Model; 7= Market Money Model}
  • MM(1), {% Risk parameter}
  • MM_add(0), {% Risk for playing market money; 0 to disactivate}
  • MaxVolat(100), {% Risk for playing market money; 100 to disactivate}
  • MaxDD(20), {% Drawdown ?????}
  • InitCapital(100000); {Initial capital to trade ????}
  • Vars: LL(99999), HH(0), Trend(0), Volat(TrueRange);
  • Vars: MP(0), Risk(Range), Num(1), add_num(0), red_num(0), FRDelta(0),
  • DD(0),
  • Equity(InitCapital), TotalEquity(InitCapital), EqTop(InitCapital),
  • AssuredProfit(0), HPositionProfit(0), Kelly(0);
  • MP = MarketPosition;
  • Volat = 0.5 * TrueRange + 0.5*Volat[1];
  • if MP <= 0 then begin
  •     if Price < LL then LL = Price;
  •         if Price cross above LL*(1 + PtUp*.01) then begin
  •                         Trend = 1;
  •                         HH = Price;
  •                   end;
  •     end;
  • if MP >= 0 then begin
  •     if Price > HH then HH = Price;
  •         if Price cross below HH*(1 - PtDn*.01) then begin
  •                         Trend = -1;
  •                         LL = Price;
  •                   end;
  •     end;
  • If trend = 1 then
  •     Risk = PtDn * .01 * close {+ Slippage};
  • If trend = -1 then
  •     Risk = PtUp * .01 * close {+ Slippage};
  • HPositionProfit = maxlist( OpenPositionProfit, HPositionProfit);
  • AssuredProfit = HPositionProfit - Risk;
  • Equity = InitCapital + NetProfit;
  • TotalEquity = Equity + OpenPositionProfit;
  • EqTop = MaxList(EqTop, TotalEquity);
  • if MM_Model = 1 then { % Risk Model }
  • Num = floor(MM * Equity *.01/Risk);
  • if MM_Model = 2 then { % Volatility Model }
  • Num = floor(MM * Equity *.01/ Volat / BigPointValue );
  • if MM_Model = 3 then begin { Drawdown Model }
  • Num = floor(MM * (Equity - (1 - MaxDD*.01) * EqTop) * .01 / Volat /
  • BigPointValue);
  • end;
  • if MM_Model = 4 then begin { Kelly Model }
  • If TotalTrades > 20 and GrossProfit > 0 then
  • Kelly = NumWinTrades/TotalTrades * (1 - GrossLoss/GrossProfit)
  • else
  • Kelly = 0.1;
  • if Kelly > .9 then Kelly = .9;
  • Num = floor(MM * Kelly * Equity * .01 / Risk);
  • {Print(Kelly);}
  • end;
  • if MM_Model = 5 then begin { Larry Williams' Model }
  • value11 = MaxList(-LargestLosTrade / MaxList(CurrentContracts, 1) , Risk);
  • Num = floor(MM * Equity *.01 / value11);
  • end;
  • if MM_Model = 6 then begin { Fixed Ratio Model }
  • { DD = MaxList(DD, (EqTop - TotalEquity)/MaxList(CurrentContracts, 1)) ; {Max
  • Drawdown}
  • if TotalTrades > 20 and DD > 0 then FRDelta = MM * DD *.01
  • else }
  • FRDelta = MM * volat * BigPointValue * .01; {Delta}
  • value12 = MaxList(Equity - .5*close*(close + FRDelta)/FRDelta, 0.25);
  • Num = floor(SquareRoot(2*value12/FRDelta + .25) + .5);
  • end;
  • if MM_Model = 7 then { Playing the market money }
  • num = floor((MM * (InitCapital + MinList(NetProfit, 0)) + MM_add *
  • MaxList(NetProfit, 0)) * .01 / Volat / BigPointValue);
  • { Entries}
  • if trend = 1 and trend[1] <> 1 then buy("Trend.LE") num contracts next bar  at market;
  • if trend = -1 and trend[1] <> -1 then sellshort("Trend.SE") num contracts next bar  at market;
  • add_num = floor( MM_add * AssuredProfit * .01/ Volat / BigPointValue);
  • { Assured Profit Pyramiding }
  • if add_num > 0 and OpenPositionProfit > Volat * BigPointValue then begin
  • if Trend = 1 and MP = 1 then buy("Add.LE") add_num contracts next bar  at market;
  • if Trend = -1 and MP = -1 then sellshort("Add.SE") add_num contracts  next bar at market;
  • end;
  • red_num = floor((CurrentContracts * Volat * BigPointValue - MaxVolat *
  • TotalEquity * .01)/ close);
  • if red_num > 0 then begin
  • if Trend = 1 and MP = 1 then sell("Red.LX") red_num contracts next bar at market;
  • if Trend = -1 and MP = -1 then buytocover("Red.SX") red_num contracts next bar  at market;
  • end;
  • if Num < 1 then Num = 1;


您需要登录后才可以回帖 登录 | 注册入住  

本版积分规则

易家网  ©2015-2023  郑州期米信息技术有限公司版权所有  豫公网安备 41010502005136号 豫ICP备16010300号