Recent content by GuyM

  1. G

    How would I go about Programming this?

    Haha I'll keep you posted with how it works out!
  2. G

    How would I go about Programming this?

    MarketMasher and Monti1a, Thank for the help, this worked really well. The code i used was: InputNumber= 63.47 Condition1= High[0] >= inputnumber Condition2 =Low[0] <= inputnumber IF Condition1 AND Condition2 THEN Structure= 1 Else Structure= 0 ENDIF RETURN...
  3. G

    How would I go about Programming this?

    The time frame I'm wanting is 15minute candles, I could use the close but I don't want to limit the touch of the level to the close of bars because then I will miss out on many level touches. There has to be a way though because the software can track when price hits a price level with its...
  4. G

    How would I go about Programming this?

    ForexForex, I think that could work but Prorealtime doesn't have functions that include bid and ask etc. There seems to be no function to track actual price, theres just high, low, open and close etc which is pretty frustrating. It seems silly that theres not a simple function that tracks...
  5. G

    How would I go about Programming this?

    MarketMasher, Thanks for your reply, I really appreciate it. I just tryed what you said and I put in the following code: InputNumber= 63.47 IF Close[0] = inputnumber THEN Structure=1 Else Structure=0 ENDIF RETURN structure as "level hit" This worked well and the...
  6. G

    How would I go about Programming this?

    ForexForex, thanks for the reply, I tried doing what you said but I didn't work, probably because I didn't really understand the coding of that. Prorealtime didn't understand a few symbols like $ etc. The level im trying to work is 63.47 on NZDJPY if you can change the code to suit that? I...
  7. G

    How would I go about Programming this?

    Hi just a quick programming question as I am new to programming and I am trying to program a FOREX strategy which I have come up with. I am using ProRealTime software for my programming as this is my charting package. How do I create a condition that a candle must touch a certain...
Back
Top