Recent content by JOSEBA

  1. J

    VBA help (again)

    Hello Grantx. Look for something like Dim BidSize or Dim AskSize. Under this copy and paste into your code Dim Counterbid As Double Dim CounterAsk As Double Under the main block of code shown above copy and paste into your code Counterbid = BidSize CounterAsk = AskSize For i = 2 To 10 If...
  2. J

    Pivots and VBA

    Hi Grant. I forgot an important thing . We go back to pivot A in the screen shot. From A backwards you can find a highest high equal to point A. This is still valid A must be >= to the highest high 15 bars backwards to be considered as pivot But A must be strictly > to the highest high (lateral...
  3. J

    Pivots and VBA

    Hello Grant. Here is a screenshot . Let´s start at bar 0 (current bar), the study check if 15 (lateral bars) bars ago is the highest high. Let´s say it is, ( we will name this point , point A) it is not enough to be considered as a pivot yet. Now we know point A is the highest high from our...
  4. J

    Backtesting the Dow with CMC MarketMaker

    Visual Chart for backtesting up to 8 years intraday historical data.
  5. J

    Pivots and VBA

    Hello Grantx The study paints the bar placed in the (n) position where n is the position where there is a pivot high or low, to calculate this position we use two functions: (for pivot high).GetSwingHighBar(Data, GetSwingHighBarDataOccur, GetSwingHighBarDatatPrice...
Top