Announcement

Collapse
No announcement yet.

T&S trade size question

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • T&S trade size question

    Can you scan in T&S in the efs and if size comes across, use that to set a trigger. thank you

  • #2
    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

    Working...
    X