FishNet

singhboy

Active Member
#4
Zultan always post eye candy images. Images look so interseting that if he post all images on any site n asks for 1 lakh rs for all these Afls concerning these Images, any1 will happily pay it. Why dont u try zulatan bro, shall I do marketing for u on 20% profit sharing?:clap:
 

zultan

Well-Known Member
#5
thank you my friends

Dear Zultan!
Thank you for you alf. But how can to use this alf to buy/sell?
same qustion here hatsenlienhuong ... i realy don't know probably do detect early stock trend or some thing !!

Zultan always post eye candy images. Images look so interseting that if he post all images on any site n asks for 1 lakh rs for all these Afls concerning these Images, any1 will happily pay it. Why dont u try zulatan bro, shall I do marketing for u on 20% profit sharing?:clap:


thank you singhboy :)

i read most of your post you always add and give to my knowledge
however discipline and acting like a bear will make you a great trader as i can sense that you are on a good path or the correct track



trading knowledge
one of my discipline piont for US Market :
do not trade on friday Not always
trade after 10:30 monday << for US Market that opens 9:30 AM
 
Last edited:

singhboy

Active Member
#6
Thnx bro. And bear !!! Im already a great bear probly bigger than even Shankar shrama n Anand Rathi. If I was billionaire, I would hav made nifty tumble more than 1000 pts in May-june ahahaha. All bulls say thanks to God that m not billionaire
 
#10
this code can be found in amibroker help:





side = 1;
increment = Param("Increment",2, 1, 10, 1 );
for( i = 10; i < 150; i = i + increment )
{
up = MA( C, i );
down = MA( C, i + increment );

if( ParamToggle("3D effect?", "No|Yes", 1 ) )
side = IIf(up<=down AND Ref( up<=down, 1 ), 1, 0.6 );

PlotOHLC( up,up,down,down, "MA"+i, ColorHSB( 3*(i - 10),
Param("Saturation", 128, 0, 255 ),
side * Param("Brightness", 255, 0, 255 ) ), styleCloud | styleNoLabel );
}