Home     News     Software     Order     Download     Support     Publications     Research     Contacts  
   Home

   News

  •  

  • Latest News
      
  •  

  • World News
      
  •  

  • Our achievements
      
       Software

  •  

  • TradeStation Solutions
      
  •  

  • Genetic Optimizer v.2.0 (TSG2)
      
  •  

  • Trendiness
      
  •  

  • Genetic Optimizer v.1.5 (TSGO)
      
  •  

  • Portfolio Analyzer
      
  •  

  • MATLAB Link Dll
      
  •  

  • Excel Link Dll
      
  •  

  • Wavelet Transform Dll
      
  •  

  • Portfolio Software
      
  •  

  • Genetic Optimization
      
  •  

  • eSignal Solutions
      
  •  

  • Matlab & TradeStation Solutions
      
  •  

  • Excel & TradeStation Solutions
      
       Order

       Download

  •  

  • Free Download
      
  •  

  • Update
      
       Support

  •  

  • Online Help
      
  •  

  • Upgrade Policy
      
       Publications

  •  

  • Fractal dimension – numerical characteristic of trend
      
  •  

  • Volatility Models
      
  •  

  • Genetic optimization. Application in TradeStation environment.
      
  •  

  • Trading Systems Free
      
  •  

  • Money Management
      
       Research

  •  

  • TS Excel Link's using example
      
  •  

  • Strategy Optimization, Curve Fitting and Walk Forward Analysis.
      
  •  

  • Entropy Indicator in TradeStation using Matlab
      
  •  

  • TradeStaion Genetic Optimizer
      
       Contacts

    Overview: Work with library dll

    To work with library dll it is necessary

    1. To define input values of an indicator, a signal or any another study, one has to add the following lines in the beginning of the indicator or signal code:

    2. EasyLanguage:
       
      Inputs: Price(Close{ a price series },  
       
      Scales(8) { number of scales },  
       
      NSigma(2) { threshold value for signal / noise };  
    3. To define functions dll,
    4. EasyLanguage:
       
      defineDLLFunc"tswvl.DLL"FLOAT"RUNWVL",LPFLOAT,int,float
       
      defineDLLFunc"tswvl.DLL"FLOAT"GETALLVALUES",int,int
    5. To define the input file of a given lengths
    6. EasyLanguage:
       
      vars: lookback(0), count(0); 
      Array: ArrayPrice[511](0); 
       
      lookback = power(2, Scales);  
       
      for count = 0 to lookback-1 begin 
      ArrayPrice[count] = Price[count]; 
      end
    7. To initialize wavelet transformation:
    8. EasyLanguage:
       
      Value1 = RUNWVL(&ArrayPrice[0],Scales, NSigma); 
    9. To receive output values:
    10. EasyLanguage:
       
      Value2 = GetAllValues(1,Count); 
    11. To produce required operations with the received values.


    <<< Wavelet Dll
    Wavelet Denoised & Residual Indicator >>>


    Developed by: webdesign.tria.lv  

      About | Privacy Statement | Terms of use | TradeStation Disclaimer

    Copyright © 2004 TS Smart Research

    time: 0.0406 | queries: 3