LAND SECURITIES GROUP PLC ORD 10 2/3P, BURFORD CAPITAL LIMITED ORD NPV, SIRIUS MINERALS PLC ORD 0.25P, BIDSTACK GROUP PLC ORD 0.5P, LLOYDS BANKING GROUP PLC ORD 10P, TCG
FTSE 100, DAX Index, Euro Stoxx 50, S&P 500, Nasdaq Composite, Nikkei 225
US 10Y, Euro Bund, Germany 10Y, Japan 10Y Yield, UK 10Y, India 10Y
Gold, Brent Oil, Crude Oil, CFDs on Natural Gas, Palladium, Silver
This script calculates the run time of a Pine script. While its numbers are not very precise and it doesn’t work on all scripts, it will help developers calculate run times more precisely than by hand, and so provides Pine coders with an additional profiling tool to help them optimize their code. How to use the code • Place the code included between the up/down...
QuantCat Chande Swinger This strategy is designed to be used on the 1 minute with mainly bitcoin, and cryptocurrencies. But parameters can be adjusted to ANY pair. After some long research about chande momentum oscillator, I decided to create a strategy using normal distribution percentage levels to snipe entries. This in turn on the 1 minute can create a nice...
QuantCat Momentum Finder Strategy This strategy is designed to be used on the 1 hour time frame, on all x/btc pairs. The beautiful thing is it plots the take profit, and stoploss for you for each entry- where I would say use the stoploss for sure and feel with water with how the price action is looking when in profit. In this strategy, I actually implemented my...
QuantCat Intraday Strategy This strategy is designed to be used on the 15 minute time frame, on liquid x/btc pairs and BTC/USD. It works by having 2 moving averages, automatic stop loss calculation, and taking positions on MA crosses and MA zone bounces for confirmation. Stoploss is so crucial to minimise any damage from huge unexpected candles, the strategies...
Firstly, 100% of the credit goes to Greg Morris @ Stockcharts.com for the article detailing the concept and most of the settings/components. I've simply implemented his idea. I haven't sought permission from him, but given that he was open with the components of the indicator I'm assuming he's happy for me to go ahead and code this in pinescript. See the article...
The ‘Mayer Multiple’ is one of the most popular metrics and derives from the current price divided by the 200-day moving average (200-MA). The average value is 1.39, and historically, when it becomes equal to or greater than 2.4 it will retrace to under 1.5. Simulations performed by Trace Mayer determined that in the past, the best long-term results were achieved...
Dragon-Script is a framework to make it as easy as possible to test your own strategies and set alerts for external execution bots. This is the alerts version of the script. The script has many features build in, like: 1) A ping/pong mechanism between longs and shorts 2) A stop-loss 3) Trailing Stops with several ways to calculate them. 4) 2 different ways to...
Dragon Script is a framework to make it as easy as possible to test your own strategies and set alerts for external execution bots. The script has many features build in, like: 1) A ping/pong mechanism between longs and shorts 2) A stop-loss 3) Trailing Stops with several ways to calculate them. 4) 2 different ways to flip from long to short. The script is...
Alerts for famous Turtle Trading Rules. Based on work from tmr0 and ossettia. It can be used with Autoview. If you have any advice on how to further improve the script, please let me know by PM or comment below. Thanks! Please hit on "Like" if you find this script useful so that others can find it easier. Thanks! *** The information and script provided here are...
Simple script that will plot a circle indication on the chart when RSI returns above 30 from oversold position. Also allows you to create a custom alert.
Works best on the longer-time frames to let you know if were in a bullish or bear cycle. Green Bars / Candles on D W M indicate a strong bullish trend Red Bars / Candles on D W M indicate a strong bearish trend This script helps eliminate a lot of false color signals on your chart so its clear to see whats happening on the longer time-frames. Works with all...
What is a Source? This is the module where the indicators are built. In other words, the main logic of a trading system. This where entries and exits takes place. In this case, we have pre-built an external Quansium Source, where the user can enter basic signals without the need for any code of signal management at all. Why should I use this? When building a...
Tired of wasting countless hours switching back and forth between timeframes? Worry not! For only 499.95$ now you can... Oh wait this script took me 5 minutes I can't sell that. The idea is priceless thought. This is a very basic script that lets you view 2 daily exponential moving averages from any timeframe (you won't see much from higher timeframes...
// Fixed error message "Index should not be negative(-8)" // // @author lonestar108 // study(title = "3/9/27/9 Zero Lag EMA / EMA / Pivots / Dynamic Support", shorttitle="3/9/27/9 ZLEMA/EMA/Pivots/Support", overlay=true) src=close lengths=input(3, title="Short Period Length") length=input(9, title="Fast Period Length") length2=input(27, title="Slow Period...
This is a simple example of how you can compile your own strategy This script contains the code for alerts and for backtesting. In order to use the backtester, comment out the sections to be used for signals, and comment in the sections to be used on the back tester, and visa versa for using the script for alerts in order to automate your own bot.
Exponential moving average of 200 periods, which changes color according to the position of the candles. (200 periods: default configuration Option to change periods allowed) If the candles are on the EMA, this will have green color, otherwise red color (colors, thickness...
This is a script to call resolutions with some math on top of your base resolution. Using the modulo operator to quantize integer values, it works by converting the modified resolution integer to a 4 digit string value. Use the function within your own scripts to call funny resolutions otherwise difficult to calculate. You cannot add series expressions to...