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...
Published source code is subject to the terms of the GNU Affero General Public License v3.0 This script describes and provides backtesting functionality to internal strategy of algorithmic crypto trading software "HatiKO bot". Suitable for backtesting any Cryptocurrency Pair on any Exchange/Platform, any Timeframe. Core Mechanics of this strategy are based on...
This is a modified RSI version using as a source a big length(50 candles) and an average of all types of sources for candle calculations such as ohlc4, close, high, open, hlc3 and hl2. In this case we are going to use a 0-1 scale for an easier calculation, where 0.5 is going to be our middle point. Above 0.5 we consider a bullish possibility. Below 0.5 we...
Based on the ANNE EA v3 for MT4. For use on FOREX. if ATR is greater than ATR average taken from last 5 candles, then market considered as trending, and so Open(0)>Close(1)=buy Open(0)Close(1)=sell Open(0)<Close(1)=buy. If trending, then buy high & sell low, if consolidation then buy low sell high. Exit is by trail and Take Profit. PM me for edit or MT4 version info.
This is a long only strategy adapted for crypto market. Its idea is to take the most juice out of a long trend and cut the losses as soon as possible. For this , its components are RSI with a very big length - 100 or 200 preferably and RVI. Rules for entry If RVI is in the buy zone and we have a crossover from RSI with the overbought level. Rules for...
This is crypto and stock market trending strategy designed for long timeframes such as 4h+ From my tests it looks like it works better to trade crypto against crypto than trading against fiat. Indicators used: RSI for rising/falling of the trend BB sidemarket ROC sidemarket Rules for entry For long: RSI values are rising, and bb and roc tells us we are not in a...
Pivot Point Reversal Strategy Pivot point reversal strategy is based on the first support level’s price action during the bullish trend and the first resistance level during the bearish trend . Traders follow the main trend and enter into the trade after reversal analyzing pivot point levels. This version is an upgraded version, combining the initial pivot point...
This is a template not actually meant for trading. I picked two random oscillators. This is a template meant to turn into a live trading strategy, however. It's literally just a specialized take profit/stop loss system. It is to ensure your bot doesn't make any bad moves that you wouldn't have manually. The code should be pretty well annotated. Putting this into...
Simple way how to use Linear Regression for trading. What we use: • Linear Regression • EMA 200 as a trend filter Logic: Firstly we make two different linear regression movings as oscillator. For this we need to subtract slow moving from fast moving, so we get the single moving around zero. This is the green/red line which appears on the chart. The trade open...
Hello, I've only been trying to learn PineScript for two months on my own, here I am posting a version of the strategy for a grid bot with 20 orders, order size 5%, earlier I tried to find something similar, but could not. Perhaps others, those who, like me, are just starting to learn PineScript, will find something useful. In the process of using grid bots, I...
This is a simple yet very efficient swing strategy designed for crypto and stock market, using big timeframes. Its main component is VWAP weekly, so for best scenarios its better to use big timeframes such as 8h+. The rules for entry are simple: If our close if above vwap weekly we enter long . If our close is below vwap weekly we enter short. We exit from...
This is a long strategy which combines Super trend indicator with LSMA moving average. In general it tends to works better with long trending markets such as stocks and cryptos using a big timeframe. The rules are simple Long entry: Supertrend is telling us to go long and close of a candle is above moving average Long exit: Supertrend is telling us to go...
This is a CRYPTO correlation strategy, which is using BTC sentiment with BITFINEX long and short ratios. WIth them we are making from one side 2 RSI, one for long and another for short. And from another side, we are going to make multiple EMA's, using the ratios for long and short. Rules for entry For this scenario I created a long only strategy. The long entry...
This strategy will enter positions when the set stochastic conditions are met, and uses the moving average to filter the direction of the trades (long/short). The background is used to illustrate the strength of the stochastic values. The following is a step by step guide in order to automate the trading of the strategy with ProfitView: In the indicator...
#-- Public Strategy - No Repaint - Fractals -- Short term Here I come with another script, more simple than Wavetrend V1. You will love it. #-- Synopsis -- Another simple idea, on a small time frame (15 min) we buy when the opening price goes below a Bottom fractals and sell when it goes over a Top fractals, but as this script do not use Wavetrends. You...
For those of us who need more excitement in our crypto journey besides just HODL, here’s a simple crypto robot that trades on the hourly (1H) candles. I call it the Crypto Surfer because it uses the 20 and 40 EMAs (Exponential Moving Averages) to decide when to enter and exit; price tends to “surf” above these EMAs when it is bullish, and “sink” below these EMAs...
As we can discover by studying the history of BTCUSD, the fall is always swift. Confirmation of this - today's collapse. In this strategy, an attempt is made to catch such drop by using quick entry and quick exit. Let's describe what this strategy consists of: • TEMA (you can find this strategy separately on this page or on platform) • VWMACD • HMA •...
This is a simple yet very efficient daytrading strategy for most crosses pairs, like EUR/NZD, EUR/AUD , GBP/NZD, GBP/AUD and so on. It tends to works best with 1h and 15 min time frame charts. Its components are : Entry time = session that we want to trade, where we can combine for example half of London and all of NY using an hour system. T3 Moving...