AHG - Profitable Strategy for Struggling Traders

Status
Not open for further replies.
Quote from pitbulltrader:

I think sharing ideas with others freely is fantastic....it's when people start thinking they need to charge others that it gets ugly.


It's a shame that there are a select few who seem so ungrateful to those that share of their time without expecting anything in return.....

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.
 
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
 
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
 
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.



Quote from austinp:

<i>".

If Anek came on here and all of sudden said " hey forum, now that I have your attention I'll charge you 200 bucks per month to sit in my chat room so you can really understand these concepts".. then that would be different...."</i>

It would? How would this information, free or otherwise, be any different? If the tidbits provided here help you make money on an exponential basis thru the end of your career, how would that value to your financial future be different?

Is it of value only if shared freely? Do the tools & tactics shared cease to work tomorrow if Anek charges $2 monthly? $20 monthly? $200 monthly?

How does his info change in value to you, a serious trader?
 
Status
Not open for further replies.
Back
Top