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...
Modificación de la estrategia “GetTrendStrategy” optimizada para Bitcoin.
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.
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...
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...
Uses two sets of MACD plus an RSI to either long or short. All three indicators trigger buy/sell as one (ie it's not 'IF MACD1 OR MACD2 OR RSI > 1 = buy", its more like "IF 1 AND 2 AND RSI=buy", all 3 match required for trigger) The MACD inputs should be tweaked depending on timeframe and what you are trading. If you are doing 1, 3, 5 min or real...
** Tired of Script showing a trade that you stopped out on but is still long on your script? Not any more** I used Pine script to create realistic trading scenarios for SL users. Now your scripts will reflect what you see on the order book. a=0.0 a := (*Insert buy condition*)? close: nz(a) plot(0.98*a, color= green) //2%SL for BUY b=0.0 b:= (*Insert Short...
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...
Buy bullish engulfing above EMA 24 Sell bullish engulfing below EMA 24 Mercurius A.M.
Let the owl make you a fortune and keep you out of harm's way. Laugh your way all the way to the bank..
This is only a slight modification to the existing "MACD Strategy" strategy plugin! found the default MACD strategy to be lacking, although impressive for its simplicity. I added "year>2014" to the IF buy/sell conditions so it will only backtest from 2015 and beyond**. I also had a problem with the standard MACD trading late, per se. To that end I modified the...