Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 04/30/24 in all areas

  1. thanos

    TDU - Latest

    Yes, forgot to state that.
    3 points
  2. thanos

    TDU - Latest

    https://workupload.com/file/E3Qx6u34UeC
    2 points
  3. Input: Length(10), BrkOuts(2), TrailStp(6), exit_proft(1000); Vars: HighChannel(0), LowChannel(0), BreakOutCounter(0), BreakUnderCounter(0); HighChannel = Highest( High , Length )[1]; LowChannel = Lowest( Low , Length )[1]; If High > HighChannel then Begin BreakOutCounter = BreakOutCounter+ 1; BreakUnderCounter = 0; End; If Low < LowChannel then Begin BreakUnderCounter = BreakUnderCounter + 1; BreakOutCounter= 0; End; If BreakOutCounter >= BrkOuts then Begin Buy this bar on Close; BreakOutCounter = 1; End; If BreakUnderCounter >= BrkOuts then Begin Sellshort this bar on Close; BreakUnderCounter = 1; End; {Sell next bar at Lowest( Low , TrailStp ) Stop; Buytocover next bar at Highest( High , TrailStp ) Stop;} SetProfitTarget (exit_proft);
    1 point
  4. Inputs: AvgPeriod1(17), AvgPeriod2(17), LRSlopePeriod(12); Variables: TotalPrice(0), Trend(0), MAL(0), MAH(0), C1(false), C2(false); { calcs } TotalPrice = (O+H++L+C) / 4; MAL = Average(Low, AvgPeriod1); MAH = Average(High, AvgPeriod2); Trend = LinearRegSlope(TotalPrice, LRSlopePeriod); C1 = Trend[1] > 0; C2 = Trend[1] < 0; { long entry logic } If MarketPosition = 0 and C1 then Buy ("LE") next bar at MAL[1] Limit; { short entry logic } If MarketPosition = 0 and C2 then SellShort ("SE") next bar at MAH[1] Limit; { exits } If MarketPosition = 1 and C2 then Sell ("LX") next bar at MAH[1] Limit; If MarketPosition = -1 and C1 then BuyToCover ("SX") next bar at MAL[1] Limit;
    1 point
  5. educated??
    1 point
  6. Anybody has the course to share?
    1 point
  7. It has been confirmed that Institutional Jigsaw course is the Axia course?
    1 point
  8. I think the course that that they offer is the axia price ladder and orderflow course which i'm sure has been shared on the forum before.
    1 point
×
×
  • Create New...