Login Page - Create Account

Support Board


Date/Time: Sat, 20 Apr 2024 03:23:12 +0000



[Programming Help] - STO / T3 Combined Into one Signal

View Count: 2216

[2019-03-03 16:07:36]
User371906 - Posts: 141
Hello,

I am presently trying to set an alert condition based on two indicators;
1. Slow Stochastic – set to slope (green up – red down)
2. T3 Moving Average - set to slope (green up – red down)

The idea is set up a Color Background Based On Alert Condition (Arrows in Region 1) when both indicators match criteria.

Stochastic = Crossing from 30 line above or 70 line Crossing from below would be signal. Only using SG1 (slow %K) when it crosses 70 or 30 line without a cross of SG2 (Slow %D)
T3 = Slope either green or red to match signal

Stochastics
=or(and(CROSSFROMABOVE (SG1, SG2), SG1 > 30), and(CROSSFROMBELOW (SG1, SG2), SG1 < 70))
T3
=OR(AND(SG1[0] > SG1[-1] , SG1[-1] <= SG1[-2]) , AND(SG1[0] < SG1[-1], SG1[-1] >= SG1[-2]))

Could someone in the community help me to combine both signals into one as an arrow up or down in the chart region 1.

Thank you

g
Date Time Of Last Edit: 2019-03-04 14:01:01
[2019-03-24 10:41:21]
Ackin - Posts: 1863
Hi, It's done

Via ACSIL

Ackin's indicators (SCH users requests for studies) - Update list | Post: 172922
imageAlert Stoch cross T3.png / V - Attached On 2019-03-24 10:40:33 UTC - Size: 12.53 KB - 523 views
[2019-03-25 07:52:03]
User371906 - Posts: 141
Petr,

Excellent.

Much appreciated

g

To post a message in this thread, you need to log in with your Sierra Chart account:

Login

Login Page - Create Account