AHG - Profitable Strategy for Struggling Traders

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

Thread Status:
Not open for further replies.
  1. Piscuy, Is this a reasonable interpretation of this setup?
     
    #4201     Nov 24, 2007
  2. Pitbull is right. It's a shame there are so many who are just trying
    to fleece others out of their hard earned money.

    Anek is doing the opposite of the average vendor. Giving instead
    of taking.

    You don't see that on ET very often. I bet our local vendors are
    pissed because they are not getting their usual amount of "noob money"...LOL...

    They are probably the ones who are pissing on this thread.
     
    #4202     Nov 24, 2007
  3. Portable Device for PDF/CHM/Word etc

    I'm usually up to date with current technology but this is a topic I'm a bit out of the loop.

    Is there anything out there that's worthy of being a portable device for reading PDF/CHM/WORD documents ?

    I checked the Ipod Touch but best you can do there is convert the PDF/etc to TXT and split them into 4kb portions, not exactly efficient. A shame really because it does look like a cool device.

    There is something else called the Archos but that's mostly for videos and read some mixed reviews.

    Aside from that I did not find much else in CNET to review.

    At the present time the only options I see for now are the OQO or the ultra portable Sony VAIOs Subnotebooks although I'm not yet convinced they are adequate for the task due to battery and/or sizes.

    Any input appreciated.

    Anek
     
    #4203     Nov 24, 2007
  4. Three Bar Reversal Paintbar Code

    Just coded three bar reversal paintbars for those that prefer them to just the engulfing ones. These ones ignore the close and just use highs and lows.
    If you would rather use close, then change If H and If L both to If Close.
    Code:
    
    input : upcolor(green), dncolor(red);
    
    var : threebarup(false), threebardown(false), okplot(false), color(0);
    
    threebarup = false; threebardown = false; okplot = false;
    
    If h > h[1] and h > h[2] and h > h[3] then
    	threebarup = true;
    
    If l < l[1] and l < l[2] and l < l[3] then
    	threebardown = true;
    
    if threebarup or threebardown then
    	okplot = true;
    	
    
    If Okplot then 
    	Begin
    	if threebarup then
    		color = upcolor
    	else
    		if threebardown then
    			color = dncolor;
    	PlotPB (high, low, "PB", color);
        End;
    
    
    Anek

    PS: Will post ELD on the next post
     
    #4204     Nov 24, 2007
  5. Attached please find TS/MC/etc Three Bar Reversal Paintbar ELD using high or low not close.

    Anek
     
    #4205     Nov 24, 2007
  6. Attached please find TS/MC/etc Three Bar Reversal Paintbar ELD using close not high or low.

    Anek
     
    #4206     Nov 24, 2007
  7. nkhoi

    nkhoi

    #4207     Nov 24, 2007
  8. #4208     Nov 24, 2007
  9. #4209     Nov 24, 2007
  10. Isn't this great coming from Austin P ..the known VENDOR ?...

    start a new thread in chit chat if you wish to debate me. Don't try to screw up the good intentsions of the kind folks here...Some folks don't need the stability from vending..they get it from trading..lets not go down this path.

    You win AustinP ..you are the greatest..
    Damn, I'm being too nice tonight..

    Back to the thread and reality...

    I apologize for this interruption.



     
    #4210     Nov 24, 2007
Thread Status:
Not open for further replies.