Can you scan in T&S in the efs and if size comes across, use that to set a trigger. thank you
Announcement
Collapse
No announcement yet.
T&S trade size question
Collapse
X
-
This efs will Ding on a T&S volume over 100 on a Tick chart
function preMain() {
setPriceStudy(true);
setStudyTitle("beep100");
}
function main() {
if ( isLastBarOnChart() && volume(0) >= 100 && getMostRecentBid() == close(0)
) Alert.playSound("F:\\Program Files (x86)\\eSignal\\Sounds\\Ding.wav");
if ( isLastBarOnChart() && volume(0) >= 100 && getMostRecentAsk() == close(0)
) Alert.playSound("F:\\Program Files (x86)\\eSignal\\Sounds\\Ding.wav");
return null;
}
Comment