Jump to content
Medved Trader Forums

mca12345

Members
  • Posts

    24
  • Joined

  • Last visited

Posts posted by mca12345

  1. Hello, its possible to backfill live historical data simultaneously using Ineractive Brokers for USA Stocks and Yahoo for other country ?

    Thanks

    Mariano

     

  2. Hello, it is possible to add to the demarks pivot formula the central pivot?

    The value of X in the formula below depends on where the Close of the market is.
    If Close < Open then X = (H + (L * 2) + C)

    If Close > Open then X = ((H * 2) + L + C)

    If Close = Open then X = (H + L + (C * 2))

    R1 = X / 2 - L
    PP = X / 4 (this is not an official DeMark number but merely a reference point based on the calculation of X)
    S1 = X / 2 - H

    Where R1 is the upper Resistance level, PP is the Pivot Point, S1 is the lower support level.

     

    thanks

    Mariano

     

  3. Hello,

     

    Its possible to add to the Camarilla pivots formula:

    S1

    S2

    R1

    R2

     


    R4 = C + RANGE * 1.1/2
    R3 = C + RANGE * 1.1/4
    R2 = C + RANGE * 1.1/6
    R1 = C + RANGE * 1.1/12
    PP = (HIGH + LOW + CLOSE) / 3
    S1 = C - RANGE * 1.1/12
    S2 = C - RANGE * 1.1/6
    S3 = C - RANGE * 1.1/4
    S4 = C - RANGE * 1.1/2

     

    They are very important levels in YEARLY PIVOTS.

    Thanks

     

  4. I have noticed that there are differences in the way of graphing the highs and lows in the different graphs, for example, last week in the contract ESM2019 the price touched the weekly pivot point (white line) in the intraday graph, but I did not touch it in the historical (white dot line without labels) missing 2 points).

     

     

    1.png

    2.png

  5. if (Close.CrossesUp(CamarillaPivotsHist_H3(Y), 0))  {   SetColorAndShape("R3", PBShape.TriangleUp, SysColor.MainIndicator1);   TriggerAlert("R3 CAMARILLA", @"R3 CAMARILLA");   SetScanResult("S3 CAMARILLA");   return;  }
    if (Close.CrossesDown(CamarillaPivotsHist_L3(Y), 0))  {   SetColorAndShape("S3", PBShape.TriangleDown_Hollow, SysColor.MainIndicator1);   TriggerAlert("S3 CAMARILLA", @"S3 CAMARILLA");   SetScanResult("S3 CAMARILLA");   return;  }
    if (Close.CrossesUp(DeMarkPivotsHist_High(Y), 0))  {   TriggerAlert("DEMARK R1", @"DEMARK R1");   SetScanResult("DEMARK R1");   return;  }
    if (Close.CrossesDown(DeMarkPivotsHist_Low(Y), 0))  {   TriggerAlert("DEMARK S1", @"DEMARK S1");   SetScanResult("DEMARK S1");   return;  }
    if (Close.CrossesUp(PivotPointsHist_R1(Y), 0))  {   TriggerAlert("PIVOT R1", @"PIVOT R1");   SetScanResult("PIVOT R1");   return;  }
    if (Close.CrossesUp(PivotPointsHist_R2(Y), 0))  {   TriggerAlert("PIVOT R2", @"PIVOT R2");   SetScanResult("PIVOT R2");   return;  }
    if (Close.CrossesDown(PivotPointsHist_S2(Y), 0))  {   TriggerAlert("PIVOT S2", @"PIVOT S2");   SetScanResult("PIVOT S2");   return;  }
    if (Close.CrossesDown(PivotPointsHist_S1(Y), 0))  {   TriggerAlert("PIVOT S1", @"PIVOT S1");   SetScanResult("PIVOT S1");   return;  }
     

    Shows old cross, not current DAY, yes on historical charts.

  6. Hello Jerry,

    I have created an SCAN when the price crosses or is equal to an annual pivot, but how is it done so that it is limited only to the day it is activated, because it is returning the result of previous days.

    Thanks

    Mariano

    sorry I realized after the post that was for the SCAN section of the forum.

×
×
  • Create New...