Recent content by Perigon

  1. P

    Wich data for correlation?

    I'm trying to measure the correlation between markets, but i'm not sure of what value i'm supposed to measure.. is the percentage change since the last bar, or what should I use? /Johan
  2. P

    Any swedish forextrader out there?

    Hi! I need to get in contact with a swedish forextrader.. need to know how you handle some of the swedish laws. Please send me an PM. Thanks in advance! /johan
  3. P

    How to make a plot "in the future"?

    I'm trying to plot some values in front of the graph, sts "in the future". I can shift it backwards på adding [x] after the Plot1(), but negative values to shift it forward doesn't work.. I know it is possible to do this, just can't remeber how.. Anyone who knows?
  4. P

    How to end a while-loop?

    Exactly 3tuple, if my conditions are not met i want to exit the loop. But i solved it, using numbers insted. If my condition is not met i set the counter (replaced the cond-variable) to the stopvalue,, i.e: While ii < 15 Begin; ... Else ii = 15; End; And then it stopped ;-P Thanks anyway guys!
  5. P

    How to end a while-loop?

    Hi guys! I want to end an while-loop if my condition is no longer met (for exampel if C < C[1]). I tried this: While cond = true Begin If conditioncode.... Else cond = false; End; I think this should stop it? I even tried with numbers if that's the prob (true = 1 and false = 0) but it...
  6. P

    Get the symbolname (not tickername)?

    I want to extrect the symbol name to an textstring, but not the tickername wich I get from the command "GetSymbolName". At the top of the windowlist in tradestation both the tickername and symbolname is shows, so I know that tradestation kan show the symbolname - but is there any command to make...
  7. P

    Manually avoid symbols?

    I have strategi that I run over a lot of stock, but I have a few stocks that I want to avoid - without deleting the symbols. I was thinking that I could solve it like: If GetSymbolName <> XPO Then Begin; .... but this doesn't work. Anyone have an idea how to solve this??
  8. P

    Code problem in Easy Language - "Cumulative start"?

    Yes, I know.. and it is his code i've used..but with my variables (and changed the fixed number 50 to an input-number)..
  9. P

    Code problem in Easy Language - "Cumulative start"?

    Seems like I fooled my self, it doesn't work.. cant understand why... My code looks like this: If BarNumber < length AND BarNumber > 1 Then HullLength = BarNumber Else HullLength = length; 'length' is my input, and 'HullLength' is used for the functions below.. but the "calculationperiod"...
  10. P

    Code problem in Easy Language - "Cumulative start"?

    I got it working now.. thanks
  11. P

    Code problem in Easy Language - "Cumulative start"?

    The maxbar setting is set to automatic.. i tried shorter manual values, but then I get an error :-(
  12. P

    Code problem in Easy Language - "Cumulative start"?

    Of course, Period is set to 50 before so it has something to compare with..
  13. P

    Code problem in Easy Language - "Cumulative start"?

    Hi! I trying to "get a quick start" in my indicators. What I mean is that lets say I have an moving average, of 50 days. That means that the indicator will be blank för the first 50 bars, and then show the value.. I want to make the period cumulative, like if it bar #1 theperiod is 1, bar #2...
  14. P

    Radarscreen with 3rd party EOD vendor?

    Well, I'm not using Globalserver to download my quotes, i'm using another program (much cheaper). So my qoutes, EoD, is in ascii or metastock format.. wich I can plot in TS. I want to run a radarscreen through all quotes, to se if any new signals are generated by my system (wich i rewrote as an...
  15. P

    Radarscreen with 3rd party EOD vendor?

    I'm using a third party for my EOD, wich I want to be able to run a screening on ('cauz there a lot of quotes :lol: ) The problem is that radarscreen looks for quotes through GlobalServer, for a list of quotes. I don't know how to add my quotes to some list in GlobalServers, and wants to be...
Top