Alerts-Customised Line

Login or Register

Please login or register in order to view and post in the Forum.

5 posts / 0 new
Last post
sniper
Last seen: 5 years 1 month ago
Joined: 02/28/2018 - 11:59
Alerts-Customised Line

Hi

1) Is it possible to have a conditional alert, example if on the 1 minute chart we have 5 closes above 100 (price) from the session open, send me an alert?
2) Draw a line on the chart based on a formula, example: (Open of 3 days ago +High of the last 3 days+ the Low of the last 3 days+ Close of yesterday)/3?

Thanks

0
cpayne
Last seen: 1 year 7 months ago
Joined: 03/30/2009 - 00:00
Conditional Alert

You could do this with a Signal Marker. The syntax of the signal would be...

POS >= 5 AND SUM(CL - SESST > 100 * TINC, 5) = 5

POS would be setup as "Bars from Start of Session" and SESST would be setup as "Highest Price > Open > First 1 Bar of Session".  You would then send to your chart as a Signal Marker and within the Signal Marker preferences, choose the Action you want such as playing a sound.  In the syntax above, I've assumed you are looking for 100 tick increments and not $100 but if the latter, just remove the * TINC.

And to make it a little more restrictive and more likely to only catch that first move to that point...

POS >= 5 AND SUM(CL - SESST > 100 * TINC, 5) = 5 AND CL.5 - SESST.5 <= 100 * TINC

You might want to check out the RTL Video series that you can find on this page: https://www.linnsoft.com/video-search/rtl

You could always replace the 100 ticks with a C# like C#1...and use a button to adjust this value...

POS >= 5 AND SUM(CL - SESST > C#1 * TINC, 5) = 5 AND CL.5 - SESST.5 <= C#1 * TINC

You could even make the 5 a varaible (C#2) and use a button to adjust it....

POS >= C#2 AND SUM(CL - SESST > C#1 * TINC, C#2) = C#2 AND REF(CL - SESST, C#2) <= C#1 * TINC

 

cpayne
Last seen: 1 year 7 months ago
Joined: 03/30/2009 - 00:00
Open 3 Days Ago

Session Stastics is a great solution for all three of these prices you are trying to access.

Open 3 days ago...

High of Last 3 Days...

Low of Last 3 Days...

You would create a signal or custom indicator using tokens like SESST_OP, SESST_HI, and SESST_LO and set the 3 up according to preferences above.

Here is a chart definition: https://www.linnsoft.com/charts/threedayopenhighlow-es

sniper
Last seen: 5 years 1 month ago
Joined: 02/28/2018 - 11:59
Thanks

Thanks

one more question;

Can RT draw a small line or show the highest amount of volume within a single candle?

cpayne
Last seen: 1 year 7 months ago
Joined: 03/30/2009 - 00:00
VPOC of Bar

Yes.  This would be the VPOC (Volume Point of Control) of the bar (if I'm understanding you correctly).  This can be done with as number of indicators including Multiple Price Highlighter, Profile Indicastor, and more, but the easiest way is with a simple moving average...