
TA-SDK for Microsoft Visual Basic,
Access, Excel, FoxPro and other ActiveX enabled programming languages
allows you to build trading applications in record time. You
can get the TA-SDK library with or without source code for
only $289.
What is TA-SDK?
TA-SDK stands for "Technical Analysis Software
Development Kit". TA-SDK has all the popular technical
indicators in the language of your choice. Bollinger Bands, Chande
Momentum Oscillator, ADX... they're all here plus numerous others.
TA-SDK is very flexible. All
indicators are completely customizable. For instance, in just
a few lines of code, you can calculate a smoothed CMO, based
upon Welle's smoothing, a triangular moving average, simple,
exponential, weighted, volume adjusted, or VIDYA moving average.
You can then take that smoothed CMO and run it through linear
regression. You can take that output and run it through yet
another indicator, such as ADX. And then run that through a neural network
indicator. The sky is the limit. You
can do things with indicators that have never before been
possible.
Are the indicators calculated
correctly?
Yes. Absolutely, positively 100%. Futures magazine recently
published a two-page review about TA-SDK and rated it 4 out of 4
stars for operation and accuracy.
All those tricky, hard-to-calculate
technical indicators that you have worked on for numerous hours
but never could get working right? They're all here.
And if not, we will consider adding your indicator for you. Countless hours of research, programming,
testing and re-testing have gone into TA-SDK.
Click
here to listen to what other people have to say
about TA-SDK.
TA-SDK
Visual Basic 6 How-To Movie - 100kb
On top of the long list of popular
indicators, you get trend line penetration, a pre-built neural network trading system,
candlestick pattern recognition and much more. Plus you get free
updates for one full year. A new version of TA-SDK is released
each year.
TASDK.dll for Microsoft Visual Basic is an extremely
fast and memory efficient ActiveX library. For example, TA-SDK Visual Basic Edition powers WebChartX
and supports hundreds of web users at the same time. It also powers the
software for. Although
our Java and C++ versions are slightly faster, you wouldn't
notice much difference. You can use TA-SDK for VB applications, Excel &
Access applications, FoxPro programs, ASP pages and much more.
Develop commercial trading applications, back
testing systems, trading experts or supply a web site with real-time server-side
technical analysis... plus much more with TA-SDK Visual Basic
Edition.
Where can I obtain data?
TA-SDK supports loading of CSV files natively. Also data such as
SQL, XML, MetaStock data or whatever you have can be loaded just
by modifying a few lines of code in the Database.cls file. We
offer historic data and a real-time data
feed api along with end of day data and historic data CD-ROMs. You can also
obtain real time data from any vendor such as eSignal, NAQ, DTN,
etc. Whatever your data source is - you will be able to get that
data inside TA-SDK with very little effort.
Pre-sales questions? Call (888)
318-3754 and choose option 1 for technical pre-sales questions. We
are happy to speak with you about your requirements.
This product is guaranteed to work as advertised or your money
back.
Click here for
a current listing of TA-SDK technical indicators.
Please note that TA-SDK does not offer charting
capabilities. For both charting and technical analysis, please see StockChartX
Professional Edition.

Non-commercial
package without source code ($129) per
developer
Includes TASDK.dll ActiveX DLL without
source,
LiveWire data manager, Microsoft Visual Basic 6.0 and Excel
example projects, documentation, and 30-days
free technical support. This is a non-exclusive,
non-commercial license excluding source code, for personal use
only. You may not redistribute TA-SDK. This version of TA-SDK reads text files only. |

|
Commercial
package with source ($289) per
developer
Includes
TASDK.dll ActiveX DLL with complete source code, LiveWire data
manager, Microsoft Visual Basic 6.0 and Excel example projects, documentation, and 30-days free
technical support. This is a non-exclusive commercial license including source code for
VB6. This license allows you to redistribute TA-SDK with your application
without paying royalties. This version of TA-SDK can be adapted to read from any data source. |

|
Example TA-SDK Code for
Microsoft Visual Basic 6
Dim
DB As New Database
Dim RS As
Recordset
Dim rsMA As
Recordset
Dim MA As
New MovingAverage
Dim n As
Integer
'Note: with TA-SDK Commercial Edition, you
can
'modify source code to load from any data source.
DB.OpenDatabase("MSFT")
Set RS = DB.getRecordSet()
'Now we have the time, date, open, high, low,
'close and volume Field objects loaded into RS.
'Calculate a 14 period TMA and store in a
recordset.
Set rsMA =
MA.TriangularMovingAverage(DB, RS, 14)
'Print all the values of the new TMA
For n = 1 To
rsMA.getRecordCount()
Debug.Print rsMA.getValue(n)
Next n
'As you can
see, TA-SDK is very easy to use.
If you would like to use TA-SDK to develop VBA or web applications,
have a look at the TA-SDK ActiveX Visual Basic Edition.