Recent content by zt3k

  1. Z

    SMA200 up for down trend for easylanguage

    the [1] should be at the end, otherwise TradeStation has to recalculate the formula each time. see this: if Average(C, 200) > Average(C, 200)[1] then upTrend = True; if Average(C, 200) <= Average(C, 200)[1] then downTrend = True;
  2. Z

    So close! Can anyone help

    the idea is this... if a new month starts, reset the counter to zero. if a new day begins, add one to the counter. therefore: on the first day of the new month, the counter = zero. it is a new day, so you add one to the counter, the counter now becomes ONE. if you keep on doing this...
  3. Z

    So close! Can anyone help

    var: tradeday.count(0); if m > m[1] then tradeday.count = 0; if d > d[1] then tradeday.count = tradeday.count + 1;
  4. Z

    Robert Hoffman System

    he uses martingale? OMG blow out is a certainty. It is only a matter of time. I wonder what hurts more? the blow out? or the dental work? p.s. anybody who uses martingale has no business in the trader education business. It is a form of betting, you are depending on luck, not fact.
  5. Z

    Tradestation risk model(last trade profit)

    what have you tried?
  6. Z

    Tradestation 8.7(b 3085) with owndata 2.7

    you can use MultiCharts DT. it is free.
  7. Z

    newbie question - feed data to owndata and tradestation 8

    there are lots of free software around, no need to pirate. try ninjatrader or multicharts DT. both of them are free.
  8. Z

    could someone help with divide by 0 error?

    nothing painful about it.... the summation/divide function looks OUTSIDE of the bar into a RANGE that encompasses previous bars ... thus a divide by zero error can still occur if there is a zero in the previous bars. let me know if you need further explanation.
  9. Z

    could someone help with divide by 0 error?

    I have this Chaikin indicator in my computer, I don't know if it is the same thing. // Chaikin Osc // // more indicators at: // http://www.tradersXchange.com/ // inputs: FastLength( 3 ), SlowLength( 10 ), AlertLength( 14 ), ColorNormLength( 14 )...
  10. Z

    freecycling TS4

    it is useless. it has no tcpip, ie. internet connection.
  11. Z

    DMI OR MACD trading system coded for TS 2000I

    try tradersxchange
  12. Z

    DMI OR MACD trading system coded for TS 2000I

    lots of codes on the internet.
  13. Z

    time session breakout code for TS2000i

    what are you talking about?
  14. Z

    dbphoenix book

    he no longer posts on TradersLaboratory either.
Top