Im just paper trading. Im trying to figure out the autotrading in amibroker...it';s a bit tricky. -Dennis
hi all i been reading this thread for a about a month,and watching the system,i work very well except in strong trend days. i would like to say thanks to no pm please for starting this threadand sharing the system,also thanks to others who have posted usefull posts. there was trade yesterday 02/02/06 at 11.35 on es and ym,did anyone take it? IDEA how about starting a live chat room on paltalk,yahoo or some whare else to discus the setups post the entry/exits and chat about the system/software ect.dose any one know how to setup /admin a chat room. if we agree and setup a chat room may be no pm please may also visit the room some day room should be free and have a password and we can post the password on this thread so only those intrested/trading this system can login.. anyone agree?
I would not post the password on this thread as there are some who do not believe in NPP's divergence ideas and would probably trash the room. Of course, I guess the moderator could boot them out... The mod could post the password by email and change it often so it would be more unlikely to get spread around so quickly.
Thanks for the chart Dennis. Looks like you are using Amibroker, if so you may use this code to erase the vertical yellow lines that link between days: Code: tdh = ... ; // the top line code tdl = ... ; // the bottom line code dgap = DateNum() < Ref(DateNum(),1); Plot( IIf( dgap, Null, tdh ), "tdh", colorYellow, styledots|stylenoline ); Plot( IIf( dgap, Null, tdl ), "tdl", colorYellow, styledots|stylenoline ); Ignore it if you are not using Amibroker. Good trading.