I have written an EFS to monitor for (and give an alert to) large trades and trades going off above the Ask and/or below the bid.
In watching eSignal's T&S windows, though, it's clear that the EFS is not catching all the trades that the T&S sheet is showing.
Is there somethign I can do to improve this, so my EFS catches all the trades that the T&S window does?
The EFS is pretty simple... basically using:
getMostRecentAsk()
getMostRecentBid()
getMost RecentTradeSize()
getMostRecentTrade()
And then if the most recent trade size is above a pre-set threshold,... or ... . if the most recent trade is below the bid or above the ask, it does an Alert.addToList and an Alert.playSound(wavefile). Very simple EFS.
Thanks for any help.
JOHN
In watching eSignal's T&S windows, though, it's clear that the EFS is not catching all the trades that the T&S sheet is showing.
Is there somethign I can do to improve this, so my EFS catches all the trades that the T&S window does?
The EFS is pretty simple... basically using:
getMostRecentAsk()
getMostRecentBid()
getMost RecentTradeSize()
getMostRecentTrade()
And then if the most recent trade size is above a pre-set threshold,... or ... . if the most recent trade is below the bid or above the ask, it does an Alert.addToList and an Alert.playSound(wavefile). Very simple EFS.
Thanks for any help.
JOHN
Comment