The second beta for eSignal 7.1 with the integrated trading, back testing, and advanced tick charts has been posted here:
http://www.esignal.com/beta_71/default.asp
Also, there will be calls from the EFS (eSignal Formula Script) to place trades added shortly. Here is a note from Matt on egroups about that:
http://groups.yahoo.com/group/eSignal/message/3099
Here is the text:
-----------------------------
From: Matt Gundersen <mattgundersen@y...>
Date: Sun Sep 1, 2002 1:03 pm
Subject: EFS and the Broker
Hi All,
In the next week or so, we'll have some more additions to the Broker plugins. More refinements to the IB plugin, a PaperTrading plugin, and the CyberX (cybercorp) plugin.
These will all have floating order tickets and the ability to see open orders, executions, and portfolio information (to the extent the brokers provides via their API) inside esignal.
In addition, the PaperTrade plugin (currently in testing) has an EFS interface that looks something like this:
var trade = new PaperTradeTradeLink();
function main() {
...
if(some condition) then {
trade.Buy(getSymbol(), 100, PaperTradeTradeLink.LIMIT, close());
}
}
The syntax of this is trade.Buy(symbol, lotsize, ordertype, stoporlimit); the stoporlimit is only required if the ordertype is LIMIT, STOP, or SAR (stop and reverse). The other order type is MARKET. Additionally, you can do a Trade.Sell
The EFS interfaces for Cyber and IB will be similar. I'll also be creating some demonstration EFS scripts that will show how you might put a graphic on a chart (shape, text, or image). Then click on that graphic to invoke the trade.
The trading plugins will be configurable so you can confirm the order before it is sent.
If you are are Cybercorp user, please email us at
beta@esignal.com so we can put you on the email list when the Cyber plugin is available.
--------------------------
Chuck
@eSignal