Recent content by tradeProg

  1. T

    Here's my strategy: RSI and ema crossover, need help!!!

    BillySimas, here's the long side Easylanguage code: [intrabarordergeneration = true] input: ema_fast_len (144), ema_slow_len (169), rsi_len (14), rsi_overbought (65), rsi_oversold (35) ; var: intrabarpersist ema_fast (0), intrabarpersist ema_slow (0)...
  2. T

    any systems that send order as signal generated?

    schoops, you're absolutely correct. Tradestation 8.1 (the current Tradestation version) supports signal detection and subsequent order generation/execution intra-bar (same bar if necessary).
  3. T

    Tradestation question

    No. Radarscreen has a maximum (200-500) number of symbols you must place in a 'grid', then apply your formulas (you code or buy from 3rd party, a few 'builtin'), and then you sort the grid by whichever formulas. Another consideration is that it has to pull all the data to your desktop to...
  4. T

    Tradestation easy language question

    You need to reissue (refresh) the order every bar. I say "refresh", because TS will not "cancel" the order until you stop reissuing. I would code the long side as: if marketposition=0 then begin ....if retries = 0 ........and (condition1 and condition2) then // signal conditions...
Back
Top