Thanks Anek.... For kicks...lets see if we paste the code inside a code block how it looks: Code: Inputs: Length1(500),Length2(100); Vars: IntrabarPersist TickFlag(0), IntrabarPersist OldPrice(0), IntrabarPersist TMF(0), IntrabarPersist NewTickVol(0), IntrabarPersist MyBarVolume(0); if BarNumber >= 1 then begin NewTickVol = Ticks - MyBarVolume; MyBarVolume = MyBarVolume + NewTickVol; if (C>=CurrentAsk) then begin TMF=TMF + (C * NewTickVol); TickFlag = 1; end; if (C<=CurrentBid) then begin TMF=TMF - (C * NewTickVol); TickFlag = 2; end; if (C<CurrentAsk and C>CurrentBid) and C>OldPrice then TMF=TMF + (C*NewTickVol); if (C<CurrentAsk and C>CurrentBid) and C<OldPrice then TMF=TMF - (C*NewTickVol); if (C<CurrentAsk and C>CurrentBid) and C=OldPrice and TickFlag = 1 then TMF=TMF + (C*NewTickVol); if (C<CurrentAsk and C>CurrentBid) and C=OldPrice and TickFlag = 2 then TMF=TMF - (C*NewTickVol); OldPrice = C; if BarStatus(1) = 2 then MyBarVolume = 0; end; Plot1(TMF, "TMF"); {Plot2(LinearRegValue(Plot1,Length1,0)); Plot3(LinearRegValue(Plot1,Length2,0)); }
Saw some of the recent posts here/market action. Can't wait to come back here and trade and read everything and continue my education . I know this is a long shot, but if anyone is going to the Las Vegas Trader's Expo, PM me. Would love to meet up. I am there with a few friends... Have a good week all.
If you didn't catch at least 4 points in this tanking.... there's something seriously wrong with your discipline! Think about it and find the reason ................................................ AHG worked like a charm. Did you notice the magic whole/round number 2100 , that was the top of premkt hours, always keep an eye on those numbers. What was yesterday high? Yup pretty close where the market bounced @ 9:50 Does it mean it will hold again?, we don't know, we prepare for a possible set up and act as soon as the mkt makes up its mind. Hope you guys and expecially Anek don't find my comments inopportune.
Hi, No trades yet....just missed a long (in my opinion the trend is still up from yesterday).....anyway, tried for an entry around 75.50 but I was too slow, moved up to 85 so may have just missed the trade of the day for me. Oh well, will keep focusing. Cheers
Edit : QT and BT This'll probably sound pretty rookie-like, but has anyone developed a good strategy to place a magic tick limit order quickly using BT and QT? I find accessing the high of the strong bar and placing the magic tick limit in the DOM window in BT to be very cumbersome. Only to find myself with either a bad fill or missing the boat. -Tech