Jump to content

kratos194

⭐ V.I.P.
  • Posts

    39
  • Joined

  • Last visited

  • Days Won

    3

kratos194 last won the day on June 28 2024

kratos194 had the most liked content!

About kratos194

  • Birthday 09/17/1957

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

kratos194's Achievements

  1. Waiting for someone to share the book asked for in previous posts, here it is: The Jack Gillen - July 10-2001 Commodity Seminar (161 pages): hxxps://pdfcoffee.com/gillen-seminar-pdf-free.html more resources by Jack Gillen: https://indo-investasi.com/topic/92878-jack-gillen-simplified-astrology-course/?do=findComment&comment=716622&_rid=143510
  2. If it is helpful, here is his book: Trading Chaos (251 pages): hxxps://pdfcoffee.com/bill-williams-2000-trading-chaos-applying-expert-techniques-pdf-free.html
  3. - Short Term Trading Strategies That Work by Larry Connors and Cesar Alvarez: hxxps://scribd.vpdfs.com/doc/100324184/Short-Term-Trading-Strategies-That-Work-by-Larry-Connors-and-Cesar-Alvarez - An introduction to ConnorsRSI: hxxps://scribd.vpdfs.com/document/178302260/ConnorsRSI-Pullbacks-Guidebook - Short Selling Stocks With ConnorsRSI: hxxps://scribd.vpdfs.com/document/320443169/Short-Selling-Stocks-with-ConnorsRSI-2013-pdf
  4. 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);
  5. 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;
  6. Larry Connors - Connors On Advanced Trading Strategies (299 pages): hxxps://scribd.vpdfs.com/document/319980056/Connors-Larry-Connors-On-Advanced-Trading-Strategies-pdf
  7. Inputs: RSI_Period(2), RSI_Overbought(10), RSI_OverSold(10), MA_Exit_Period(5), stop_loss(2000); Variables: RSI_Value(0), Exit_MA(0); RSI_Value = RSI(Close,RSI_Period); Exit_MA = Average(Close, MA_Exit_Period); If (RSI_Value <= RSI_Overbought) then buy this bar at close; If (MarketPosition <> 0 ) And (Close > Exit_MA ) then sell this bar at close; If (RSI_Value >= RSI_OverSold) then sellshort this bar at close; If (MarketPosition <> 0 ) And (Close < Exit_MA ) then buytocover this bar at close; SetStopLoss(stop_loss);
  8. inputs: Per(3),Perc(0.05); vars: LevelLong(0),LevelShort(0); vars: BandWidth(0),Percentuale(0); LevelLong = HighestFC(H,Per); LevelShort = LowestFC(L,Per); BandWidth = BollingerBand(C,20,2)-BollingerBand(C,20,-2); Percentuale = Perc*C[1]; if BandWidth<Percentuale then begin buy next bar LevelLong stop; sellshort next bar LevelShort stop; end;
  9. Inputs:AtrMult(3),AtrLen(21); Vars:HClose(-99999),LClose(99999); Value1=AtrMult*WAverage(TrueRange, AtrLen); HClose=IFF(C>HClose,C,HClose); LClose=IFF(C<LClose,C,LClose); If CurrentBar=1 then Value2=HClose-Value1; If C < Value2 then begin Value2=LClose+Value1; HClose=C; End; If C > Value2 then begin Value2=HClose-Value1; LClose=C; End; If Close crosses above Value2 then Buy this bar at close; If Close crosses below Value2 then Sellshort this bar at close;
  10. In Larry Williams' video (see previous post) there is also this long-term forecast: https://postimg.cc/23gK4KLs
  11. For those who have: Kindle Unlimited, the book is free: https://www.amazon.com/Tao-Jones-Averages-Whole-Brained-Investing-ebook/dp/B00FKZN4W6
  12. In this video by Larry Williams from January 28: hxxps://www.youtube.com/watch?v=dILq3u1nHQ0 there is this prediction of 2024, the blue line being the most reliable: https://postimg.cc/dZ9QfDZ7
×
×
  • Create New...