Arrays and how they can *not* be used (?)

Forums ProRealTime English forum ProOrder support Arrays and how they can *not* be used (?)

Viewing 15 posts - 1 through 15 (of 33 total)
  • #185935
    This is merely a (too long) brainstorm. Thus please feel free not to read at all. 🙂

    With above, I just did a quick mash up of an existing code, so not a valid test of Arrays. My understanding of Arrays is (using an xls to illustrate) … imagine a spreadsheet with numbered rows; after each bar the Close value is entered into a cell then next bar / close value is entered under the last entry … repeat etc. When required, a query of the Array (e.g. filled cells as above) can give HH, HL, LL, LH  value over x bars. The clever bit is to code into a strategy to determine if price has passed the Highest High and price is now hitting a Lower High (a High lower than Highest High).  And so on, so as to determine if the uptrend has ended. Anybody agree / disagree with above? Can any wizard code it? 🙂

    (emphasis is mine)

    If it only were true that it would work like that. But it doesn’t and I think it can’t.

    What you suggest/imply there, @GraHal, is that the array lives over bars. As in

    On a side note : and *if* it would work like that, you’d get completely crazy of the fact that arrays can be one dimensional only. Thus, whatever you do, you would need two arrays or more. Think like (not tested for syntax, thus mere pseudo code) :

    The worst part is that this can easily be done without array, and then we suddenly understand.

    But meanwhile notice what I attempt there : Writing (for me) useful values in array elements, without consuming an 1M-elements array. This
    a. Makes it incomprehensible
    b. suggests that the array lives across bars (which it does not).

    Conclusion of that :
    There is no use to “save” array elements like I suggest doing there, and having them 1:1 with real bars (BarIndex) would
    – make it understandable indeed
    – make it a useless exercise because we already have that array (it is named Close[]).

    Working with arrays in PRT is mind boggling, or it is me who just can’t cope.

    Anyways …
    I personally use arrays everywhere and my whole life, but not within ProRealCode because there is no need to for me. This could also relate to actually everything already being in an array (or being presented as one), so that stuff like

    should better be done in a nice array, a small loop taking care of this. But this too is useless once you learn that this does all tricks already :

    So no definitions because PRT does this internally for you, and all is accessible in “array fashion”.

    Summarised : I am not debunking the array feature, but its real use-cases for me would occur when

    1. they live across bars;
    2. they are at least two dimensions.

    The latter is important so we could attach the value we want to preserve to the bar where it occurs in one go, which combines with not maintaining array elements per (history) bar.

    So never mind this makes sense or not, at least I am now able to be creative and let it do something without being continuously disturbed by thinking of what I’m actually doing or even trying to do.

    We should not hallucinate over arrays going to live across bars (hoping that PRT is going to develop that) because I foresee all kind of hurdles regarding referencing bars in the past which are of a too far away history. Thus, if I would be able to store “events” (like my Highs) in an array in subsequent elements and once per month such an event occurs with my 1 second TimeFrame, then personally I would noy know what happens when my Live Strategy is 5 months in, and I still refer to a 1 second bar of 5 months in the past. I know, this is a general problem already, and the topic with the question “I save a barindex in a variable in order to refer to it as “Close[myBarFromDec2019]”, I postponed for later – but sure is due. IMO these things can’t work and my Live Strategy will eventually break (error out) or possibly come up with 0 values which ever back were not 0. Anyway :

    An array would be useful for this, if I would only store the resulting values of Close[myBarFromDec2019] and never the index to bars. Thus $MyHistoryArray[element 773] = Close[0]. After 3 years I will surely be able to access element 773 and its stored value. That is, if my strategy still runs, which chances are small either because of error or me being broke in that portfolio. And restarting that Strategy will have lost the value(s).

    There is really more to it all and I think that PRT does not have the infrastructure to let this work as I like to. But I’ll survive. 🙂
    Peter

    #185952

    so glad that’s all cleared up without the slightest room for confusion or misunderstanding 😁

    I haven’t a clue what arrays are but would chiefly like to know if they’ll help me make better coffee in the morning? Cuz, y’know, otherwise…

    1 user thanked author for this post.
    #185956

    All right. An array of coffee machines then. That should do it.

    #185958

    Alright, now yer talkin!

    (I am truly impressed that you do seem to understand these things, I just don’t know the question to which ‘arrays’ is the answer)

    1 user thanked author for this post.
    #185963

    Peter … how is attached working?  Have I fudged it to get positive results and it’s not using an array at all?

    Credit goes to the original code Author (?), I can’t remember to what extent I forked it.

    #185998

    Crazy remains crazy.

    #186015

    Peter … how is attached working? Have I fudged it to get positive results and it’s not using an array at all?

    Credit goes to the original code Author (?), I can’t remember to what extent I forked it.

    Well, you surely almost fudged me !
    😉

    In a 1M backtest it emptied my bank account prematurely on Dec 10. Luckily the stockings had been filled already, as this is past data with no guarantee fir future Christmases.
    At least the Risk/Reward has been 3,61. But my Reward looks to be being broke now.

    I have been working on such a strange thing before; I didn’t understand what was happening, but it won and won and won. I ran into it by a mistake I made. After one day working on it, it appeared to be pure coincidence that it worked in a certain stage. I recall that the equity curve looked as strange as the one you see in the 3rd attachment (this is from this DJi S15, 100K, although I think the 100K units for S15 fail on me – 50K, 100K, 200K all perform exactly the same).

    I am sure it is caused by the array used. Haha.
    But no, I don’t even understand what it does. Sorry !
    It seems that it tries to cover for an earlier drawdown … until that breaks. Double or nothing kind of.

    Btw, I recognize from the sudden slowness on 1M bars that it most probably fails on accessing undefined array variables. So yes, instead of providing an error, PRT happily continues and you won’t understand a thing of it (again, Peter ? 😉 )

     

    #186019

    I don’t know what happened to the attachments in the previous post, but here they are again.

    #186026

    Something else : careful with judging what actually happens. Compare the two situations below. Each suggests that this is the result of 4 trades, but it isn’t …
    Instead it semi-closes the last position because (somehow) the data won’t proceed in real time (I did not put a limit on it). Also see the vertical white bar in the equity curve in the left. Thus, each time I run it, the time you see in the 3rd attachment increases (now 09:58, the previous run of the same 09:50 or so). Thus, this trade is open since Jan 7, and with that the gain is only a little (subtract the 1729).

    Something else is, that apparently it is a good idea to go Short on the DJi on Jan 7.
    Arrghhh, too late now !

    #186056

    Peter, have you got an analogy of how Arrays work that we can understand please?  I can’t get my head around arrays living across the bars? 🙂

    Extending my analogy using .xls, if we visualise an .xls in 3D as attached, is that what you are trying to say in your original post as to how data is / can be loaded into an Array?

    Data does not have to be loaded into 3 dimensions, it can be 2 dimensions … as my rows and columns xls analogy?

    #186067

    Peter, have you got an analogy of how Arrays work that we can understand please?

    First off, this first part is what Nicolas will have explained in the main topic about arrays as well, though probably with different wording or perspective. I will most certainly add some kind of technical perspective as how arrays would not “behave” as usual, which could be a problem for those familiar with them. Thus, not to improve on Nicolas’ explanations :

    An array with its subsequent elements, the first element starting at 0 :
    I sequentially put Prime Numbers in this array, just so there’s some logic in the sequence.

    [0] = 2
    [1] = 3
    [2] = 5
    [3] = 7
    [4] = 11
    [5] = 13
    [6] = 17
    [7] = 19
    [8] = 23
    [9] = 29
    [10] = 31

    So these 11 first prime numbers have been stored in this array (we could call it $Prime) and instead of calculating them if we want to know the next one to 17, we could go (loop) through the array, wait until we run into our target (which is 17 we’ll find in element 6), go to the first next element and find 19 in that next (7th) element.

    Difference between PRT and the mere real world, regarding this

    In the real world an array is “Dimensioned” in advance, because it should not reserve unnecessary memory, so you could have a command like

    Dimension $Prime[100]   // Reserve 100 elements for 100 prime numbers max.

    PRT allows to use arrays without dimensioning them. This will mean that accessing them is a simulated act, making the access to them very slow (this is so indeed). The technicalities are beyond this post and usefulness, but let’s say that this is to our convenience that this is so (unless you’d need sheer speed – ahem).

    In a similar fashion, in PRT we can write (to) array elements while skipping smaller numbered elements. Thus, if I like my next element in $Prime to be #30 then I’d simply put

    $Prime[30] = 97   // Just a guess that this would be 97.

    At doing this (why would I want it ??) this poses the problem that at looping through the array I’d run into element [11] which is not defined (I never wrote to it). And thus PRT allows this to error, but without erroring-out – you wouldn’t notice it. You may also not notice that the contents is of no value to you, while expecting the next prime number there.

    (ouch, it appears touch for be to stay objective)

    More in a next post … (knowing that I also need to pay attention to my backtests 🙂 and some markets).

    #186075

    Very generally, the usefulness of arrays appear when you need more than 1 value of a same kind but for different instances (this is not an official description).

    Compare the $Prime array with

    Prime001 = 2
    Prime002 = 3
    Prime003 = 5
    Prime004 = 7
    Prime005 = 11
    […]

    which would give endless lists, without even being able to nicely loop through them.
    For PRT we can obviously compare this with a long list of constants (like “hot” seconds in a 5 minute TimeFrame, etc.), those seconds implying an action – could be buy, sell, or stay.
    Thus suppose we would comprise an array of 300 elements, each element telling about its relative second whether it’s a buy or a sell, and the Time “constant” tells us that we’re in second #23, we could look in our $BuySell array whether it contains 0 (stay), -1 (Sell) or 1 (Buy).
    Of course we could have a separate array for Long and Short.

    The purpose of such “constructions” is always the same : have unambiguous code which in a line or 5-10 does all without numberous If – ElsIf ‘s and without 300 OR’s. Thus for this example, if you’d convert the second number in the m5 TF, you can refer to that in the array its element descriptor like

    Of course defining all the entries for the array may still take 300 lines of code, although the Sell and Buy signal elements could be sufficient, now NOT writing to the elements subsequently (try to think about this yourself). Anyway, the above few lines are now all the lines for each of the 300 seconds to deal with.

    So now you’d have a real application for arrays, but look at Nicolas’ examples as well.

    More in a next post.

     

     

    #186081

    So what about that “does not live across bars” thing ?

    As we (hopefully) know, variables in PRT can be defined in the program code, but when the program ends, the variables diminish.

    Our program code is always called at the close of a bar, be that a 1 second bar, a 1 minute or a 10 day.

    At the beginning of our code, variables have no value.
    Sadly PRT allows us something to refer to them without that we have defined them for a first time (give them a value), which is such wrong behavior (this is not subjective) that many people will never get to understand how this “calling of our code” works. Anyway try to remember :

    Our code is (without exception) called per close of each bar, and each time of that call all is fresh and new.

    EXCEPT

    Except when we “declare” a variable with Once :

    This means that this would happen :

    And this contrary to this situation :

    Now what I was saying earlier on, is that an array can not be declared with Once. And for this reason it will always lose its content at the next bar’s call.

    In other words :

    Would we like to use arrays e.g. for building up Artificial Intelligence data, then this is not possible. Self-learning is possible, but only by means of normal variables, declared with Once.

    In other words, supposed we would like to capture/register monthly averages or something (mind you, in a LIVE strategy) then all we can do is

    Registering that on the monthly basis.
    But this is moot anyway, because if our strategy quits for some reason, the data will not be available to it at a next start, unless we keep track of that with backtesting in parallel (always capture the last month’s performance of “whatever we calculate”) and feed that data to the program code, to be used in a next startup of it.

    Obviously it could be useful again to put that in as static data in an array, which obviously can be done, just like our array with Buy and Sell signals (not that I told about that explicitly, but notice that that too would be “defined” over and over again at each bar call, millions of times (think 1 second TF) while one really should be sufficient. Thus, with normal “Once”d variables it can be done one time only, but with arrays this is not possible (that I know of).

     

    #186083

    Now we also know the best amounts to Buy per second in the m5 TimeFrame.
    Please notice that I now use a 2nd dimension, which is not possible in PRT.

     

    #186085

    About history for arrays, I think it’s impossible to achieve. In a 200K backtest (not to use 1M) with just, say, a 100-element array, more than 20M (32+ bit) memory slots would be allotted to it, which is impossible to achieve.

    Even if users’ram were used, nobody can have TBs of ram!

    But users’resources, if available,  could only be used for backtesting, not for autotrading, as this would imply keeping users’PCs on 24/7 to allow trading.

     

Viewing 15 posts - 1 through 15 (of 33 total)

Create your free account now and post your request to benefit from the help of the community
Register or Login