Hawkeye Grabba AutoGrab pips with Hawkeye Grabba
Grabba is a simple mechanical system that you can manage yourself, using your own risk and reward profile.
The Hawkeye Grabba is a risk management tool which provides traders with a visual representation of the risk-to-reward profile on every trade.
For example, you can apply your own profit targets (say 10 pips) and each line will show you that multiple.
As with all the Hawkeye Indicators, Grabba can be applied to any timeframe and any chart and can be custom set to be used on any market, i.e. Forex, stock indices, commodities, etc.
Profit
Hawkeye Levels ATRExit at the right time with Levels ATR!
Levels ATR is a powerful series of user pre-defined levels, which act as both potential exit positions and stop loss management.
The Levels ATR indicator helps traders identify clear exit strategies.
Inexperienced traders can:
spend too long focusing on where to enter the position
spend no time on where to exit or take profits
allow the market to dictate the exit following a particular chart pattern or set up
be panicked into exiting
Few traders concentrate on their exit strategies, yet this is where the big profits are made!
HMA_PPT StrategyHMA_X & Pivot Profit Taker combo
LOL!
change the settings to suit your favorite pair/TF before cry yourself to sleep.
doesnt repaint? ----> YOU TELL ME :-D
PROFIT CANDLE -BILLION WAY Indicator SimplifiedHere is another good indicator with lot of logical combinations for making some good Buy.
This can be applied for any time frame ,Best works in 30min ,1hr,1D,W,M
Only Look for the Black handle to appear in the chart
As soon as you sea the black candle forming Enter Buy (If you see the black candle after the candle made huge high avoid entering the trade at very high level price)
Cover the the trade after 2to3 candle ,This gives some false signal as well so this might work only 80%.
Test it and provide your feedback.
To get this indicator for your testing invite to give you the access. www.tradingview.com INDEX:VXGO NASDAQ:AAPL /Llkz4wjE/
EUSDwaveV2 [pietherrieck]another version of my highly efficient strategy for the d1 eur/usd chart. i don't recommend to use it on other currencies/timeframes!
EUSDwave [pietherrieck]this is a highly efficient strategy for the d1 eur/usd chart. i don't recommend to use it on other currencies/timeframes!
EUSDwaveV2 [pietherrieck]new version of my highly efficient strategy for the d1 eur/usd chart. i don't recommend to use it on other currencies/timeframes! if you want to use it contact me!
FaderThe Fader indicator finds the moment when trends begin to reverse. It locks down a quick profit which makes it very effective. It also calculates if it's better to stay or leave after a day of having opened the position.
Flags tell you when to buy or sell, red triangles indicate losses whereas green triangles indicate earnings. It has been tested with over 15 currency pairs, and has had consistent earnings.
If you are interested in this indicator please write to me at LingenTrade@gmail.com
EUSDwave [pietherrieck]this is a highly efficient strategy for the d1 eur/usd chart.
i don't recommend to use it on other currencies/timeframes!
if you want to use it contact me!
EUSDwave [pietherrieck]this is a highly efficient strategy for the d1 eur/usd chart.
i don't recommend to use it on other currencies/timeframes!
Vix FIX / StochRSI StrategyThis strategy is based off of Chris Moody's Vix Fix Indicator . I simply used his indicator and added some rules around it, specifically on entry and exits.
Rules :
Enter upon a filtered or aggressive entry
If there are multiple entry signals, allow pyramiding
Exit when there is Stochastic RSI crossover above 80
This works great on a number of stocks. I am keeping a list of stocks with decent Profit Factors and clean equity curves here .
Possible ways to use this:
Modify this script and setup alerts around the various entries
Use as is with different stocks or currency pairs
Modify entry / exit points to make it more profitable for even more symbols and currencies
Fractal Adaptive Moving Average (real one)Ignore the other one (it contains some errors).
On this FRAMA you can play with length, SC and FC.
Just read on below links to understand more about this super useful moving average:
etfhq.com
etfhq.com
www.quantshare.com
$EURUSD 1 Minute Chart StrategyYou must be using the renko chart with traditional settings with the block size set at .0001. This can be done by going to settings. Style at the bottom should be changed from ATR to traditional. The set the block size as .0001.
How to automate this strategy for free using a chrome extension.Hey everyone,
Recently we developed a chrome extension for automating TradingView strategies using the alerts they provide. Initially we were charging a monthly fee for the extension, but we have now decided to make it FREE for everyone. So to display the power of automating strategies via TradingView, we figured we would also provide a profitable strategy along with the custom alert script and commands for the alerts so you can easily cut and paste to begin trading for profit while you sleep.
Step 1:
You are going to need to download the Chrome Extension called AutoView. You can get the extension for free by following this link: bit.ly ( I had to shorten the link as it contains Google and TV automatically converts it to a symbol)
Step 2: Go to your chrome extension page, and under the new extension you'll see a "settings" button. In the setting you will have to connect and give permission to the exchange 1broker allowing the extension to place your orders automatically when triggered by an alert.
Step 3: Setup the strategy and custom script for the alerts in TradingView. The attached script is the strategy, you can play with the settings yourself to try and get better numbers/performance if you please.
This following script is for the custom alerts:
//@version=2
study("4All-Alert", shorttitle="Alerts")
src = close
len = input(4, minval=1, title="Length")
up = rma(max(change(src), 0), len)
down = rma(-min(change(src), 0), len)
rsi = down == 0 ? 100 : up == 0 ? 0 : 100 - (100 / (1 + up / down))
rsin = input(5)
sn = 100 - rsin
ln = 0 + rsin
short = crossover(rsi, sn) ? 1 : 0
long = crossunder(rsi, ln) ? 1 : 0
plot(long, "Long", color=green)
plot(short, "Short", color=red)
Now that you have the extension installed, the custom strategy and alert scripts in place, you simply need to create the alerts.
To get the alerts to communicate with the extension properly, there is a specific syntax that you will need to put in the message of the alert. You can find more details about the syntax here : gist.github.com
For this specific strategy, I use the Alerts script, long/short greater than 0.9 on close.
In the message for a long place this as your message:
Long
c=order b=short
c=position b=short l=200 t=market
b=long q=0.01 l=200 t=market tp=13 sl=25
and for the short...
Short
c=order b=long
c=position b=long l=200 t=market
b=short q=0.01 l=200 t=market tp=13 sl=25
If you'll notice in my above messages, compared to the strategy my tp and sl (take profit and stop loss) vary by a few pips. This is to cover the market opens and spread on 1broker. You can change the tp and sl in the strategy to the above and see that the overall profit will not vary much at all.
I hope this all makes sense and it is enough to not only make some people money, but to show the power of coming up with your own strategy and automating it using TradingView alerts and the free Chrome Extension AutoView.
ps. I highly recommend upgrading your TradingView account so you have access to back testing and multiple alerts.
There is really no reason you won't cover the cost and then some on a monthly basis using the tools provided.
Best of luck and happy trading.
Note: The extension currently allows for automation on 2 exchanges; 1broker and Okcoin. If you do not have accounts there, we'd appreciate you signing up using our referral links.
www.okcoin.com
1broker.com
Ichimoku Cloud ALERTHi, this my new script which show you correct Ichimoku signals, when price exit cloud.
SELL SIGNAL:
- red line below blue
- green line below price
- price exit cloud bottom
- price below 3 EMA's!
BUY SIGNAL:
- red line above blue
- green line above price
- price exit cloud upper
- price above 3 EMA's!
You can change ichimoku parameters and input 3 EMA's. If u dont want use any of the EMA's then input 1 into them.
Madrid Profit AreaThis study displays a ribbon made of two moving averages identified by a filled Area. This provides visual aids to determine the trend direction and pivot points. The moving average will be Red if its value is decreasing, and green if it is increasing. When both MA's are the same color we have a trend direction. If those are different then we have a trend reversal and a pivot point.
If combined with another ribbon then it can be configured so we have a pair of slow MA's and another pair of fast MA's , this can visually determine if the price is in bull or bear territory following the basic rules:
1. Fast MA pair above the slow MA Pair = Bullish
2. Fast MA pair below the slow MA Pair = Bearish
3. If the fast MA crosses over the slow MA it is a Bullish reversal
4. If the fast MA crosses below the the slow MA, it is a Bearish reversal.
The use of the ribbons without the price bars or line reduces the noise inherent to the price