Volume.afl
上传用户:shiqiang
上传日期:2009-06-12
资源大小:1289k
文件大小:2k
源码类别:

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    Volume
  4. //  Author/Uploader: 0505670391-JEDDAH 
  5. //  E-mail:          SOOOOS50@HOTMAIL.COM
  6. //  Date/Time Added: 2006-04-21 13:47:08
  7. //  Origin:          _SECTION_BEGIN("Individual"); #include @LastBacktestFormula MaxGraph=0;GraphXSpace=5; GraphZOrder=1; Plot( Equity( 0, -2 ), "Equity", -8, styleArea );  if( ParamToggle("Show Buy-and-Hold?", "No|
  8. //  Keywords:        
  9. //  Level:           basic
  10. //  Flags:           system
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=616
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=616
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  Volume WITH SECTOR SHOW THE BLANCE OF QUINTITY.
  17. //
  18. //------------------------------------------------------------------------------
  19. _SECTION_BEGIN("Individual");
  20. #include @LastBacktestFormula
  21. MaxGraph=0;GraphXSpace=5;
  22. GraphZOrder=1;
  23. Plot( Equity( 0, -2 ), "Equity", -8, styleArea );
  24. if( ParamToggle("Show Buy-and-Hold?", "No|Yes", 1 ) )
  25. {
  26.  /* now buy and hold simulation */
  27.  Short=Cover=0;
  28.  Buy=Status("firstbarintest");
  29.  Sell=Status("lastbarintest");
  30.  SetTradeDelays(0,0,0,0); PositionSize = -100;
  31.  ApplyStop(0,0,0,0);
  32.  ApplyStop(1,0,0,0);
  33.  ApplyStop(2,0,0,0);
  34.  Plot( Equity( 0, -2 ), "Buy&Hold", -9 );
  35. }
  36. _SECTION_END();
  37. _SECTION_BEGIN("Volume At Price");
  38. PlotVAPOverlay( Param("Lines", 300, 100, 1000, 1 ), Param("Width", 5, 1, 100, 1 ), ParamColor("Color", colorCycle ), ParamToggle("Side", "Left|Right" ) | 4*ParamToggle("Z-order", "On top|Behind", 1 ) );
  39.  
  40. _SECTION_END();
  41. _SECTION_BEGIN("Volume1");
  42. Plot( Volume, _DEFAULT_NAME(), ParamColor("Color", colorBlueGrey ), ParamStyle( "Style", styleHistogram | styleOwnScale | styleThick, maskHistogram  ), 2 );
  43. _SECTION_END();