We have moved to Discord. Please click here to join us in the Trading Terminal Discord server.
These forums are read-only.
Search the Community
Showing results for tags 'camarilla'.
Found 7 results
-
Camarilla Strategy Real-time in DAS Chart
Krystian kmaskos posted a topic in Bear Bull Traders - Members Only!
I was curious if anyone was able to program their Camarilla strategies into DAS Trader charts, where one would get automatic visual notifications if a strategy was in play. Thor appears to have this functionality programmed into his charts (dont know what software he is using), RANGE, DAY and the PREFERRED CAM PLAY. I was able to quickly develop this is excel but having it in the DAS chart would be ideal. Peter's substack has a Hot-Key that does something similar but it is still a manual process and only for 1 chart/ticker at a time. DAS Advanced Hotkeys part 21 - by Peter Benci -
Camarilla Pivots indicator for Ninja Trader
Erwann posted a topic in Bear Bull Traders - Members Only!
Hi, Do you know if Thor is sharing is Camarilla Pivots indicator for Ninja Trader and where to find it please? I'd like to be sure to have the same levels as him to study is trading style. Thanks a lot. -
Hi, I've been using thinkorswim for charts for my trading and I found it incredibly frustrating that the Camarilla Pivot Points in ToS is just wrong and weird. So I fixed it. The issues with the original ToS Camarilla Pivot Points Doesnt use After Market data - for closing value and High and Low Doesnt show R1 and S1 natively Without these, well it's pretty useless. So here is my script, I hope this helps everyone trade better on ToS. To use this ThinkScript follow the directions Open up Studies in ToS chart Create a new Script (Click on the big "Create" button) Write in Title for Script, I suggest Kevin'sCamPivots Remove the default code, something to do with plot Copy and Paste my code in. Press 'Ok' button now add it to your chart This script also allows you to manually overide the Close High and Low values in the settings. This is because the values may still differ from DAS and you can have the flexibility to manually change the values. # # Kevin Gong - Camarilla Pivot Points # Email me for support - [email protected] # Copy Right - Do not distribute this code without my consent. # input aggregationPeriod = {default "DAY", "WEEK", "MONTH"}; input length = 1; input SetClose = 0.00; input PreMaketHigh = 0.00; input PreMaketLow = 0.00; Assert(length > 0, "'length' should be positive: " + length); def yyyymmdd = GetYYYYMMDD(); def month = GetYear() * 12 + GetMonth(); def day_number = DaysFromDate(First(yyyymmdd)) + GetDayOfWeek(First(yyyymmdd)); def Today = GetDay() == GetLastDay(); def Yesterday = GetDay() == GetLastDay() - 1; def period; switch (aggregationPeriod) { case DAY: period = CountTradingDays(Min(First(yyyymmdd), yyyymmdd), yyyymmdd) - 1; case WEEK: period = Floor(day_number / 7); case MONTH: period = Floor(month - First(month)); } def prevHigh = if YesterDay and !YesterDay[1] then high else if Yesterday and high > prevHigh[1] then high else prevHigh[1]; def prevLow = if Yesterday and !Yesterday[1] then low else if Yesterday and low < prevLow[1] then low else prevLow[1]; def camhighValue = if PreMaketHigh == 0 then prevHigh else PreMaketHigh; def camlowValue = if PreMaketLow == 0 then prevLow else PreMaketLow; def last = if Today and !Today[1] then close[1] else last[1]; def camClose = if SetClose == 0 then last else SetClose; def range = camhighValue - camlowValue; plot R5 = (camhighValue / camlowValue) * camClose; plot R4 = camClose + range * (1.1) / 2; plot R3 = camClose + range * (1.1) / 4; plot R2 = camClose + range * (1.1) / 6; plot R1 = camClose + range * (1.1) / 12; plot S1 = camClose - range * (1.1) / 12; plot S2 = camClose - range * (1.1) / 6; plot S3 = camClose - range * (1.1) / 4; plot S4 = camClose - range * (1.1) / 2; plot S5 = (camClose - (R5 - camClose)); R5.SetDefaultColor(GetColor(5)); R4.SetDefaultColor(GetColor(5)); R3.SetDefaultColor(GetColor(5)); R2.SetDefaultColor(GetColor(5)); R1.SetDefaultColor(GetColor(5)); S1.SetDefaultColor(GetColor(6)); S2.SetDefaultColor(GetColor(6)); S3.SetDefaultColor(GetColor(6)); S4.SetDefaultColor(GetColor(6)); S5.SetDefaultColor(GetColor(6)); def paintingStrategy = if aggregationPeriod == aggregationPeriod.DAY then PaintingStrategy.POINTS else if aggregationPeriod == aggregationPeriod.WEEK then PaintingStrategy.TRIANGLES else PaintingStrategy.SQUARES; R5.SetPaintingStrategy(paintingStrategy); R4.SetPaintingStrategy(paintingStrategy); R3.SetPaintingStrategy(paintingStrategy); R2.SetPaintingStrategy(paintingStrategy); R1.SetPaintingStrategy(paintingStrategy); S1.SetPaintingStrategy(paintingStrategy); S2.SetPaintingStrategy(paintingStrategy); S3.SetPaintingStrategy(paintingStrategy); S4.SetPaintingStrategy(paintingStrategy); S5.SetPaintingStrategy(paintingStrategy);
-
Hey Friends! As a frame of reference, I am using Think or Swim (ToS) for me trading and am trading the cam pivots strategy. I’m mainly looking at R/S4 breakouts. The cam pivots study that’s built into ToS is based on non-premarket data. Which is perfectly fine and accurate. Now, I’d like to have the same study but with premarket data. Is there a chance anyone can tell me this: Which premarket data does it use? Does it use the premarket data from the prior day to plot the current day OR does it use the current day’s premarket to plot the current day’s levels? Any help, links, or light shed upon this subject is greatly appreciated!! I feel like I’m close to getting the appropriate levels. Many Thanks Andrew F
-
Como establecer el nivel de tu Stop Lose? (Estrategia Camarilla)
Oscar posted a topic in Day Trading
Hoy realice tres trades en AAPL y los compartí con el grupo de miembros en español para escuchar sus comentarios porque obviamente tengo un problema. Desde que estoy operando Camarilla Pivot Points (he revisado todos los videos y materiales de @Thor con gran espero por mi falta de dominio del idioma Ingles), me he sentido absolutamente cómodo y feliz pero....., no logro los R que debería ya que por lo general el Stop Lose me saca, entonces la pregunta es: Mi Stop Lose es muy corto o Entro demasiado tarde al trade y mi SL es tan largo que realizo parciales ineficientes? Los tres trades a continuación los hice teniendo en cuenta lo siguiente: Me saca el SL Me salgo por miedo a la devolución del precio y Entro con seguridad, cobro parcial y me saca el SL @Josué y @Abiel me compartieron su feedback y en resumen fue: JosuéFri @ 9:50 am Yo meti la pata porque me asuste a las 8:50. Ni siquiera llegue a break even OscarFri @ 9:51 am cuanto le dejaste de SL a tu entrada? JosuéFri @ 9:52 am 75 centavos OscarFri @ 9:53 am mucho mas de lo que yo deje, solo fueron 10 centavos JosuéFri @ 9:56 am Aquí los calculo, la celda H, pero generalmente multiplico el ATR por 0.15 @Oscar estrategia/trade idea? AbielFri @ 9:57 am @Oscar y también: razón/catalizador en la acción para decidir operarla? OscarFri @ 10:02 am @Abiel , en el primer minuto vi que el SPY no tenia fuerza y en el segundo minuto de AAPL vi que cerro por debajo del alto del pre-mercado, así que apunte a una reversión del precio por debilidad del mercado. AAPL seleccionada por volumen y acción del precio en el pre-mercado ya que en la vela de 5m antes de apertura rechazó con fuerza el alto del pre-market Este post queda abierto para que me compartan sus comentarios con el fin de mejorar. Muchas gracias a la familia BBT- 5 replies
-
- 1
-
-
- stop lose
- pivotpoints
-
(and 1 more)
Tagged with:
-
Hey Everyone, Not sure if this is even a thing but does anyone know how or where someone could setup a scanner to look for stocks hitting certain Pivot points (R6, S3 for example)? I have found a good consistent strategy that works for me using these indicators but other than just good ole fashioned looking intraday at charts, I am unable to find a software like tradingview.com that I could setup some type of screener. I have found 1 month timeframes but I am looking for much shorter time periods. Or if maybe anyone out there has a thought on a way to scan for R5, R6, S5, S6 price action using another indicator to track down I would be greatly appreciative.
- 3 replies
-
- camarilla
- pivot point
-
(and 2 more)
Tagged with:
-
S3 Bounce, but L2 Bearish, Scared out of the move!
CliffG posted a topic in Bear Bull Traders - Members Only!
Today I have 2 examples of a bearish L2 on $AAPL and $PLTR as the price hits S3 on the Cam Pivots. Yet, the stock bounces from here and makes an amazing move up. I didn't take either trade as I was 'checking my mirrors' and saw trouble!. Looking for some guidance, advices, discussion, or just some acknowledgment that this is hard, and how can we avoid this 'noise' (is it?). Example 1: $AAPL Example 2: $PLTR
