AHG - Profitable Strategy for Struggling Traders

Discussion in 'Journals' started by Anekdoten, Jul 19, 2007.

Thread Status:
Not open for further replies.
  1. Here you go sir.

    Anek
     
    #3531     Nov 13, 2007
  2. foxthorn

    foxthorn

    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)); }
    
     
    #3532     Nov 13, 2007

  3. I agree here, greed and fear are trader's enemies, period.
     
    #3533     Nov 13, 2007
  4. nkhoi

    nkhoi

    wonder how it matchs up against CMF (Chaikin Money Flow )
     
    • cmf.gif
      File size:
      52.3 KB
      Views:
      490
    #3534     Nov 14, 2007
  5. Maybe they are the same thing.

    How do you like CMF?

    Thanks

    Anek
     
    #3535     Nov 14, 2007
  6. 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.
     
    #3536     Nov 14, 2007
  7. mark1

    mark1 Guest

    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.
     
    #3537     Nov 14, 2007
  8. Razor

    Razor

    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 :D


     
    #3538     Nov 14, 2007
  9. 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
     
    #3539     Nov 14, 2007
  10. Triangle forming.

    EDIT: Breakout to the downside.

    EDIT: Out +10, looking to re-enter.
     
    #3540     Nov 14, 2007
Thread Status:
Not open for further replies.