If I borrow an expert to do the direct conversion, is it possible to do direct conversion if special coding is written to convert from VB or excel to TS thro' devlopers kit. It should not be for individual programming but for any programme written in VB or excel to TS automatically thro' developers kit. what is the exact use of Devlopers Kit? Thank you in anticipation.
The short answer is no. At the end of this message I have pasted an overview of the developers kit known as SDK (software developer kit). You do not need the SDK at all to do what you requested. You only need to get someone who is conversant with both Tradestation Easylanguage and Excel/VB. They will determine the logic behind the Excel/VB programme and just code that in Easylanguage. The most difficult part is determining the logic i..e what the Excel/VB programme is doing with the data. The easy part is rewriting that in Easylanguage, which should take no more than a couple of hours.
As you see below the SDK is designed to produce interfaces between other systems and TS. From your earlier post, as I understand it, you want to rewrite what you are doing at present via Excel to do it within Tradestation. SDK will not do that for you and is unnecesary.
Charlton
The EasyLanguage Extension SDK is intended for use in conjunction with
analysis techniques written in EasyLanguage. It makes it easier for you to integrate
function libraries developed in another programming language with analysis
techniques developed in EasyLanguage.
Used in conjunction with an EasyLanguage analysis technique, the SDK
provides access to the price and volume data of the chart (or RadarScreen symbol)
to which the EasyLanguage analysis technique is applied, and to the EasyLanguage
variables and arrays contained in the analysis technique. Certain EasyLanguage
analysis technique settings, like “maxbarsback”, are accessible through the SDK, as
are some values relevant to calculation, like CurrentBar. Additionally, the SDK
provides the ability to raise a run-time error in TradeStation, in a manner similar to
that of the EasyLanguage reserved word RaiseRunTimeError.
This version of the EasyLanguage SDK does not provide access to all
TradeStation reserved words, nor can functions written in EasyLanguage be called
directly. (Of course, many programming languages have run-time libraries that
perform many of the functions available through EasyLanguage reserved words,
especially mathematical functions. Market/Trading functions are a notable
exception, because of the specific nature of their use.)
The SDK does not provide the ability to plot directly on a chart, nor to directly
buy or sell. However, these functions can be performed by EasyLanguage studies or
strategies. The SDK does not provide the ability to access data from TradeStation
windows other than those into which an EasyLanguage analysis technique has been
inserted. For example, the SDK does not provide access to values shown in the
“Matrix” or “News” windows of TradeStation.
This reference provides the basic information necessary to make the SDK
functions available to your DLL, and to call your DLL functions from EasyLanguage in
a manner that will provide your DLL with the information it needs to use the SDK.
Because use of the EasyLanguage Extension SDK is an advanced topic in
EasyLanguage, this reference presumes some familiarity with EasyLanguage. Some
familiarity with C++ is presumed by the C++ code examples. Some example code
may be Visual C++® (Microsoft) specific