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: Wavelet Detrended & Denoised Price Function

    B>

    Example 2. The function that provides the detrended price series, i.e. the price without long-term trend component. Obviously, it is nothing but the sum of wavelet coefficients.

    It is possible to considerably improve standard oscillators using the detrended price instead of initial price. Here standard indicator RSI and the same indicator (a yellow line on the diagram) based on the TS_Wvl_DetrendPrice function are given. One can see that the modified indicator is smoother and catches the prices extrema much better then initial one.

    EasyLanguage:
     
    {******************************************************** 
    Non-decimated Haar Wavelet Detrended & Denoised Price Function 
    Copyright (c) Trade Smart Research Group 2002  
    Notes: The math is based on Multiresolution Analysis of Time Series  
    www.multiresolutions.com 
    ********************************************************}
     
     
    Inputs: Price(NumericSeries), {a price series}  
    Scales(Numeric), {number of scales <=9 } 
    NSigma(Numeric); {threshold value signal / noise}  
     
    vars: Lookback(0), count(0); {definition of variables} 
    Array: ArrayPrice[511](0); {definition of Array} 
     
    defineDLLFunc"tswvl.DLL"FLOAT"RUNWVL",LPFLOAT,int,float{definition dll} 
    defineDLLFunc"tswvl.DLL"FLOAT"GETALLVALUES",int,int
     
    lookback = power(2, Scales); {calculation of quantity of elements of Array} 
    for count = 0 to lookback -1 begin {the task of elements of Array} 
    ArrayPrice[count] = Price[count];  
    end
     
    Value1 = RUNWVL(&ArrayPrice[0],Scales, NSigma); {a call dll} 
    Value2 = Scales + 1;  
     
    TS_Wvl_DetrendPrice = Value1 - GetAllValues(3, value2); {function evaluation} 


    <<< Wavelet Denoised & Residual Indicator
    Wavelet Smoothing Indicator Family >>>


    Developed by: webdesign.tria.lv  

      About | Privacy Statement | Terms of use | TradeStation Disclaimer

    Copyright © 2004 TS Smart Research

    time: 0.6033 | queries: 3