Jump to content

Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.

theman

Members
  • Content Count

    47
  • Joined

  • Last visited

Everything posted by theman

  1. I've installed it, but I can't find any chat :-(
  2. Hi Guys Just want to say the new UI looks great, however the roll-overs(menu) don't work well in IE 6 (SP2), they jump all over the place. Also, where can I find the Chat button? Thankyou
  3. this is based on the MACD !! inputs: FastLen( 12), SlowLen( 26), Length( 10 ), StDv(1); VARS: BB_Macd(0), Avg(0), SDev(0), Upper_band(0), Lower_band(0); BB_Macd= MACD( Close, FastLen, SlowLen ) ; Avg = XAverage(BB_Macd,Length); SDev = StdDev( BB_Macd, Length ) ; Upper_Band = Avg + StDv * SDev ; Lower_Band = Avg - StDv * SDev ; Plot1(BB_Macd); Plot2(Upper_Band); Plot3(Lower_Band);
  4. As you can see, the orange one is where you get the novice traders selling (when its below the 0 line i.e. white line), but if you look at the purple line I put, the institutions are buying (when its above the 0 line i.e. white line), and if you look at the chart, thats what happened. How cool!
  5. Thats correct brownsfan19 I just want to know how there doing it, do you think they count the volumn for or something?
  6. Hi there EOTPRO have a new indicator that plots 3 subgraphs (indicator), the 1st one shows you how many novice traders (so to speak) are buying/selling the 2nd shows the how many professional traders are buy/selling the 3rd one shows you how many institutions are buy/selling. The institutions being the big boys in trading. So, if a novice (1st one) are selling, there making the wrong move as the 3rd subgraph i.e. institutions are buying. So youre not supposed to trade like small traders i.e. 1st one, you go with the Institution traders i.e. 3rd one. Dont know if this makes sense? I hope you can help me? Thanks
  7. Hlm Your post really makes sense, thankyou so much and thank you ALL for replying to my port. Quick question If on the long term chart lets say 610 tich chart, the trend is going up, on the middle it going down, and the smaller timeframe its going down, what would you guys do? Thanks again for your help
  8. I've been looking at BIDU for a long time and I like the way it moves in either directions. So that why I like this chart BlowFish. I guess being a new trader, I'll like to learn from the masters about how they would get in and out of BIDU given the timeframe above. Thankyou
  9. Hi there Wonder if you can help me? I have 4 charts of BIDU 1. 512 tick chart 2. 233 tick chart 3. 133 tick chart 4. 51 tick chart Please can you show me how you would trade with the following charts, I'd like to know when you would buy/sell. I'm new to trading and I like to learn more about trading Intraday. I'l like to trade like a momentum trader (If there is such a name). The red/blue line on all the charts are Hulls moving average. Please find below the charts. Many thanks theman
  10. theman

    Volumn Stock

    THanks guy for your help :-) I'll keep away from this one
  11. theman

    Volumn Stock

    Does anyone here know how this indicator was created? Whats is it based on? and how does it get bug spike? http://cgi.ebay.com/Ultimate-Volume-Stocks-Day-Trading-for-TradeStation_W0QQitemZ220254100453QQihZ012QQcategoryZ3769QQssPageNameZWDVWQQrdZ1QQcmdZViewItem Would really appricate some help. Thankyou
  12. Is it me? I cant get into the Trading Indicators forum? I get a blank page? Thanks
  13. Hi there Im having problems with this indicator, when I click on the paintbar, I get nothing. Can someone please help me in getting this to work with GOOGLE (maybe yesterday day). If you can please printscreen the input box for GOOGLE that would be very kind of you. Kind regards
  14. Blu-Ray Thanks alot that worked!!! You're a star.
  15. Can someone please help me convert this so that it works with MultiChart 3. Many thanks and kind regards [LegacyColorValue = true]; //******************************************************// // MacdBB 12/24/07 // //******************************************************// // // for "Chart_Offset" I use .0005 for EC and other 4 dec symbols. // I use .5 for the ER2 and 1.00 for the ES, equities - expirament. // // Imagine this will work on Radar Screen, haven't tried it. I // would just use the "Plot_Chart" setting and see what happens. // inputs: Price(Close), FastLen( 12 ), SlowLen( 26 ), Length ( 10 ), StDv( 1 ), BB_Color_Up(Green), BB_Color_Dn(Red), Upper_Band_Color(Red), Lower_Band_Color(Blue), Zero_Color_Up(Blue), Zero_Color_Dn(Red), Plot_Sub(True), Plot_Chart(False), Chart_Offset( 0 ), { offset above and below for dots on chart } Alert_Append(" "); { will replace symbol in alert message } VARS: BB_Macd(0), Avg(0), SDev(0), Alert_Msg(" "), Upper_Band(0), Lower_Band(0), BB_Color(Black), {black is meaningless - just for initialize} Cross_Up(False), Cross_Dn(False), Zero_Color(yellow); {yellow is meaningless - just for initialize} //******************************************************// // Once only initialize the alert append. // //******************************************************// Once If Alert_Append = " " then Alert_Msg = Symbol else Alert_Msg = Alert_Append; //******************************************************// // Main Calculations. // //******************************************************// BB_Macd = MACD( Price, FastLen, SlowLen ) * 100 ; Avg = XAverage( BB_Macd, Length); SDev = StandardDev( BB_Macd, Length, 1); Upper_Band = ( Avg + StDv * SDev ); Lower_Band = ( Avg - StDv * SDev ); //******************************************************// // Sub-Graph plot logic. // //******************************************************// If Plot_Sub = True and Plot_Chart = False then begin If BB_Macd > BB_Macd[1] then BB_Color = BB_Color_Up else BB_Color = BB_Color_Dn; If Cross_Up = False then if BB_Macd > Upper_Band then begin Cross_Up = True; Cross_Dn = False; BB_Color = Cyan; If CheckAlert then Alert( "BB cross up " + Alert_Msg ); end; If Cross_Dn = False then if BB_Macd < Lower_Band then begin Cross_Up = False; Cross_Dn = True; BB_Color = Yellow; If CheckAlert then Alert( "BB cross down " + Alert_Msg ); end; If ( BB_Macd < 0 ) then Zero_Color = Zero_Color_Dn else if ( BB_Macd > 0 ) then Zero_Color = Zero_Color_Up; Plot1( BB_Macd, "MACD Dots" ,BB_Color ); Plot2( Upper_Band, "Upper_Band", Upper_Band_Color ); Plot3( Lower_Band, "Lower_Band", Lower_Band_Color ); Plot4( 0, "Zero_Line", Zero_Color ); end //******************************************************// // Main chart plot logic. // //******************************************************// else If Plot_Chart = True and Plot_Sub = False then begin If Cross_Up = False then if BB_Macd > Upper_Band then begin Cross_Up = True; Cross_Dn = False; Plot5( (Low - Chart_Offset) , "BB Chart", BB_Color_Up ); If CheckAlert then Alert( "BB cross up " + Alert_Msg ); end; If Cross_Dn = False then if BB_Macd < Lower_Band then begin Cross_Up = False; Cross_Dn = True; Plot5( (High + Chart_Offset) , "BB Chart", BB_Color_Dn ); If CheckAlert then Alert( "BB cross down " + Alert_Msg ); end; end;
  16. Sorry smwinc, maybe its my lack of knowledge, I think it should be ok with the bargraph. Thanks
  17. forsearch Thats what I wanted, is there a way to make it look like an indicator i.e. it gets overlayed onto the price rather then bar graphs Thanks
  18. Hi In tradestation, is there a way to display a indicator that will show you the bid/ask entries. Eotpro, they use it but for multichart, would be great if someone can do it for Tradestation? Many thanks theman
  19. Hi guys When trading let say GOOGLE, should you also look at the direction of: Dow Nasdaq S&P 500 S&P 100 Its just that the 4 above pretty much go in the same direction? Let me know what you guys think of my thought? Thanks
  20. thrunner You say it cant be done, how do you think he has done it? Thanks h**p://www.viperspeedtrader.com/DayTrading_ZigZag_Indicator_1.html
  21. chipper That would be great, wish I can help out, but my knowledge of EL is ... well ... nothing. The EOTPRO indicators look really hard to replicate, I wish you all the luck in the world.
  22. Hi Im new to trading, wonder if you can help me? Can I trade the compx index? dont know if the word "trading" is correct for the comp index? If so how does it work? Im based in UK, so can I spread bet on the compx and if I can can I bet 1 pound for it going up or down? Thanks
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.