Recent content by mtorri

  1. M

    Help with easylanguage entry at open of currentbar

    Do you mean this one? http://forum.tssupport.com/viewtopic.php?t=7087 ok I found also this one http://forum.tssupport.com/viewtopic.php?t=6814 I see the point: " by the time you figured out the value of var2... the opening tick is GONE. " The fact is that I know my X level BEFORE the open...
  2. M

    Help with easylanguage entry at open of currentbar

    Sorry I don't. Probably the problem is my poor english?
  3. M

    Help with easylanguage entry at open of currentbar

    Hi Mike! After a quick test it seems it works! :clap: if (open of next bar) > X then buy 1 shares next bar at open stop; The strange fact is that the following orders do exactly the same thing: enter at the open if (open of next bar) > X then buy 1 shares next bar at (open+5) stop; if (open...
  4. M

    Help with easylanguage entry at open of currentbar

    I don't understand how these info are useful to find a way to enter at the open. Anyway: - yes I do use indicators, and of course I only use the open info of the last bar to calculate them - average trade is about 3-4 bars (30min) sorry I don't follow you on this
  5. M

    Help with easylanguage entry at open of currentbar

    Hi DionysusToast, Yes you're right the results of the backtest are a little unrealistic, but just a little. I do have some slippage but it's affordable. I'm speaking about a strategy I already manually trade since some months. I backtested it using prorealtime, but there I only have 3,5 years...
  6. M

    Help with easylanguage entry at open of currentbar

    Thank you! I've read something about this IntrabarOrderGeneration flag. It's the perfect solution for a realtime simulation of my strategy but... I would like to backtest the strategy and as far as I understood this flag needs tik by tik data wich I don't have. So, having only 30min. intraday...
  7. M

    Help with easylanguage entry at open of currentbar

    hi everybody I've been coding easylanguage for a while but I never found how to do this: I want to enter long if the OPEN of the current bar is higher then a calculated value (let's say X). And I want to place a limit order at the open value 1 second after the open. Using prorealtime I can...
Top