Can anyone tell me how precisely to set up alerts on tradingview (i do know how to set up alerts..) specific to the "Strict Buy" criteria in the CM_Stochastic Highlight Bars indicator??? I have done a lot of searching but with little luck. Thank you :)strong text
CM_Stochastic Highlight Bars by Chris Moody?? Alerts
613 Views Asked by C James Quantrell At
1
There are 1 best solutions below
Related Questions in PINE-SCRIPT
- Calculation of volumes inside a candle
- How to get last_bar_index on bar_index == 0
- TradingView alerts are not being executed by strategy()
- the lowest low of some days
- How to sell at end of candle but buy at open on another in Trading View?
- is this User Defined Function using more memory/computing in PineScript v5?
- Pine Script: Loop Through Input Price levels & set Alerts for Each Price
- Pine v5 How to Delete Certain Labels?
- Working with various timeframe inside script irrespective of timeframe selected in charts
- Using Timeframe parameters Pinescript indicator
- How to plot horizontal lines for high and low of all weekly candles to be used on 1m and 5m charts
- Could not find function or function reference 'ta.adx'
- Want to extend FVG to certain time
- else if structure does not return true when it should
- how can I plot calculated dynamic levels?
Related Questions in INDICATOR
- Alert when change of color indicator
- How to create MQL5 Keltner Channel programmatically
- How can modify this indicator so that it only shows data for a certain amounts of periods?
- Problem executing a condition in PineScript
- Trouble with Label Plotting in Pine Script: Labels Not Appearing Despite Correct Code Logic
- Both left and right scales in a single indicator
- Push Notification Alert
- How to add delay on pinescript for long and short entries
- Using pine editor v5, how can I draw a vertical line on the last candle of the day on every friday
- Plotly indicator gauge / speedometer displaying imperial and metric units at the same time
- RSI Divergence Indicator - How to plot signals from OsLevel and ObLevel
- Convert tradingview heiken ashi with ema to Mql5
- Tab indicator is not able to be positioned correctly as expected
- Can't draw more than one trendline in custom indicator in ctrader
- Text Cursor Indicator by language direction
Related Questions in ALERTS
- Creating an Azure Activity Alert for new group creations
- Displaying the metric value in the slack alert
- Same alert - Multiple tickers
- How to Create Email Alerts for Tracking Untracked Hosts on Kibana?
- How can I set up alerts in Azure for SQL Managed Instance when storage exceeds 80% capacity?
- Dismissing Multiple Alerts Bootstrap 5.3
- Not generating email alerts in Bitnami Redmine Stack version 4.0.5
- Can we generate logDNA alerts with custom titles? I want to get the log line in the title of the alert?
- Grafana - Add custom labels in alerts
- Send alert to 5000 emails
- Alert Generation Tools/Solutions- Open source
- Splunk Query to list down active users and the knowledge object created by them
- Azure Alert when a new resource is added/modified uppon a specific tag
- Elastic Alert with "AND" condition for Elasticsearch query is never run
- Trigger function call at specific time and repeat every X minutes
Related Questions in STOCHASTIC
- how to use Euler method for numerical integration of differential equation?
- SAT-Solving: DPLL vs.?
- How to code a arrival generator with a varying intensity rate
- Interpretation of trend in two models
- Explain how this stochastik function works
- %dopar% or alternative method to speed up sequential stochastic calculation
- Solving stochastic PDEs in Fipy
- microsimulation GLM including stochastic part
- ODE with stochastic time dependent input
- Write a constraint in Pyomo with max and min
- Index error in a non anticipativity constraint in multi stage stochastic optimization
- Python - Euler-Maruyama method for stochastic differential equation
- Efficient Method of Moments(EMM) for Stochastic volatility model
- Where to find the code for ESRK1 and RSwM1 in the Julia library source code?
- I'm getting false signals on my M15, H1 and H4 Stoch RSI
Related Questions in CM
- Error while using HashTable structure in files used in a CM file
- Convert pixels to cm using Python
- If I create a dataLayer vairable in GTM to capture a dynamic value, the event pixel (part of CM floodlight) needs to be placed on site, correct?
- run multiple commands in windows cmd using Process class in java
- Unbound structure Int when compiling useing CM.make
- CM.make cannot find file "smlnj-lib.cm"
- CM_Stochastic Highlight Bars by Chris Moody?? Alerts
- Java mesurements
- Buycraft ::before keeping from left
- Starting robocopy as a service
- SML/NJ using CM.make: "Error: illegal character"
- Create device tree for CM from AOSP?
- An error occurred when I used "CM.make();" in SML,Ubuntu
- To can I find out the selected range in pixels?
- Resolve library conflict in SML/NJ Compilation Manager
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Unfortunately, that script was not written very friendly to set up alerts. Luckily, the source code is available.
I have edited the code a little bit (it has the same functionality) so that it plots some shapes along with some text, and you can set up your alerts based on those shapes.
Wherever the original indicator has "S" or "B", my indicator has "Strict Sell" or "Strict Buy" triangles. So, the functionality is the same. Of course, when you add my indicator, it won't have those "S" or "B"s. Above chart has both indicators on.
Now you can simply do "Add Alerts" and select the new indicator (Stoch HL).
Then select "Shapes" and look at the drop-down menu and select the shape which you want to set up your alert based on.
Create a new indicator and copy&paste below code. Save it and then add it to your chart.