Home     News     Software     Order     Download     Support     Publications     Research     Contacts  
   Home

   News

  •  

  • Latest News
      
  •  

  • World News
      
  •  

  • Our achievements
      
       Software

  •  

  • TradeStation Solutions
      
  •  

  • 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
      
  •  

  • TS.Link.LOGTRADE
      
  •  

  • TS.Link.OHLCV
      
  •  

  • TS.Link.QuoteFields
      
  •  

  • TS.LINK.RADAR
      
  •  

  • TS.Link.SETDATA
      
  •  

  • TS.Link.ReadData
      
  •  

  • TS.Link.Example
      
  •  

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

  • Entropy Indicator in TradeStation using Matlab
      
  •  

  • TradeStaion Genetic Optimizer
      
       Contacts

    TS Excel Link's using example: TS.Link.SETDATA

    TS.Link.SETDATA - example of indicator that sends to Excel different values (String and Numeric) and writes them on every bar in new line.
    EasyLanguage:
     
    {******************************************************************* 
    Name: TS.Link.SETDATA 
    Analysis Type: Indicator 
    Description : Example Indicator for TS Link DLL 
    Used: tslink.dll 
    Provided By : Trade Smart Research (c) Copyright 2001 - 2005  
                  www.tsresearchgroup.com 
    ********************************************************************}
     
     
    Inputs
        SetData1(GetSymbolName), {String value} 
        SetData2(Date), 
        SetData3(Time), 
        SetData4(High-Low), 
        SetData5(Volume), 
        SetSheet(1), 
        SetBeginRow(1), 
        SetColum(2), 
        ExcelFileName("TSLinkExample.xls"), 
        ExcelFilePath("C:\Program Files\TradeSmart\TS Link\TSLinkExample.xls"); 
     
    Var: StartValue(0), SetRow(0); 
     
    {Declaration functions} 
    defineDLLFunc"tslink.dll"int"TS_StartExcel",LPSTR,LPSTR{initalisation excel file 1 - Short BookName, 2 - full path bookname} 
    defineDLLFunc"tslink.dll"int"TS_SetValue",float,int,int,int,int{value,sheet number, row, column, spleep milisekonds} 
    defineDLLFunc"tslink.dll"int"TS_SetString",lpstr,int,int,int,int{text,sheet number, row, column, spleep milisekonds} 
     
    {Start Excel} 
    if currentbar = 1 then begin 
        StartValue = TS_StartExcel(ExcelFileName,ExcelFilePath); 
    end
     
    {Call Dll and send to it of the value, 10 miliseconds sleep} 
    SetRow = SetBeginRow; 
    SetRow = SetRow[1] + 1; 
    TS_SetString(SetData1,SetSheet,SetRow,SetColum,0); {Set String value} 
    TS_SetValue(SetData2,SetSheet,SetRow,SetColum+1,10); 
    TS_SetValue(SetData3,SetSheet,SetRow,SetColum+2,10); 
    TS_SetValue(SetData4,SetSheet,SetRow,SetColum+3,10); 
    TS_SetValue(SetData5,SetSheet,SetRow,SetColum+4,10); 
     
     
    Plot1(SetData4, "SetData4");  
     
     
    {***** Copyright (c) 2001-2005 Trade Smart Research, Ltd. All rights reserved. www.tsresearchgroup.com ***** 
    ***** Trade Smart Research reserves the right to modify or overwrite this analysis technique  
          with each release. *****}
     


    <<< TS.LINK.RADAR
    TS.Link.ReadData >>>


    Developed by: webdesign.tria.lv  

      About | Privacy Statement | Terms of use | TradeStation Disclaimer

    Copyright © 2004 TS Smart Research

    time: 0.0270 | queries: 2