This is simple indicator script for long term investors. It will check if the low of today is less than low of yesterday (or any time frame candle) and if the condition is satisfied, then the alert will be triggerred and that particular stock will be bought. Each time a unit is bought, the average price is calculated and also the trget selling price, which is set...
This strategy is a result of an exploration to experiment with other ways to detect lows / dips in the price movement, to try out alternative ways to exit and stop positions and a dive into risk management. It uses a combination of different indicators to detect and filter the potential lows and opens multiple positions to spread the risk and opportunities for...
This strategy is a result of a study to understand better the workings of functions, for loops and the use of lines to visualize price levels. The strategy is a complete rewrite of the older RSI+PA+DCA Strategy with the goal to make it dynamic and to simplify the strategy settings to the bare minimum. In case you are not familiar with the older RSI+PA+DCA...
A simple Pyramiding / DCA Strategy. Everyday at a specified time a position is opened. The individual position is closed when a take profit is triggered. Optionally a stop loss can be activated, or the option to close the position at the and of the time frame. You can specify the max amount of open positions. The equity will be divided through the max amount of...
Hi everybody, This strategy is a RSI, Price Averaging, Pyramiding Strategy based on the earlier RSI+PA+DCA strategy. See below. For this slightly different strategy I left the DCA option out and instead focused on the Take Profit calculation. In the previous strategy the Take Profit was directly connected to the Average Price level with a specified take...
This is my take on a grid trading strategy. From Investopedia: "Grid trading is most commonly associated with the foreign exchange market. Overall the technique seeks to capitalize on normal price volatility in an asset by placing buy and sell orders at certain regular intervals above and below a predefined base price." This strategy is best used on sideways...
Pyramiding the entries in a trading strategy may be risky but at the same time very profitable with a proper risk management approach. This strategy seeks to spot early signs of uptrends and increase the position's size while the right conditions persist. Each trade comes with its stop-loss and take-profit to enforce a proportional risk/reward profile. The...
The purpose of this strategy is to make the signals from my scripts available for verification by backtests. Different signal and filter combinations can be created and specific manual parameter optimization can be carried out. In detail, this strategy includes: 23 entry signals two entry filters with each 9 filters two exit filters with each 9 filters take...
This script simulates what goes behind scenes in a Strategy and it serves to know in Study mode how many positions are running at the same time.
Indicator for pyramidization and coverage. Recommended time frame 60 min. Alerts added.
Strategy for pyramidization and coverage. (Indicator PyramiCover) Recommended time frame 60 min.
This is an old and incomplete script that is being pulled up and dusted off as per request. The sole purpose of this script was to provide code snippets allowing one to easily convert their own script/strategy to include incremental order sizes. More control over your pyramiding orders. **It may repaint, and was not intended for trading but more as an attempt...
The price always returns to the average !!! An important separation of the price with respect to an average, indicates a depth and generally generates a reversion or correction in the trend. Depth detection is a simple and very powerful technique, it is widely used for scalping and pyramid operations, this indicator detects depth in 7 time frames, everything is...
This code is fofr you to change it and transform a strategy into a study and avoid pyramiding just by editting this lines longcondition= buy_entry and buy_zone shortcondition= sell_entry and sell_zone like this longcondition= 'YOUR CONDITION HERE' shortcondition= 'YOUR CONDITION HERE' and using your own conditions This particular strategy is only as...