VIRTUAL VERSION IS READY TO FLY As from past few months coin has been consolidated very strongly between 0.005 to 0.01 $ and gann fan has crossed 1/1 means coins is ready to fly in comming days my target of 50% spot will be sold @ 0.08 and rest upto end of the bull run
Search in ideas for "Version"
CHZ Buying Frenzy: Seize the Opportunity Now!"Chiliz (CHZ) Coin: The Short Version (for the US)
What is it?
CHZ is the digital currency that powers Socios.com, a platform where fans can buy Fan Tokens for their favorite sports teams. These Fan Tokens give fans voting rights on certain team decisions (like jersey designs or stadium music). CHZ is like the platform's internal currency: you need it to buy Fan Tokens.
Recent News
CHZ price is up slightly today (around 1%).
The market capitalization of CHZ is over $1.2 billion, making it a fairly sizeable cryptocurrency.
Important Disclaimer
I am not a financial advisor and this is not financial advice. Cryptocurrencies are volatile and risky investments. Do your own research before you buy any crypto.
XEC 2nd Move: Grab the Bull by the Horns! 🚀eCash (XEC) in a Nutshell (as of March 23, 2024)
Foundational Info:
eCash (XEC) is a cryptocurrency aiming to be a digital version of cash, facilitating everyday transactions.
It's a result of a fork from Bitcoin Cash ABC (BCHA), which itself forked from Bitcoin (BTC).
Amaury Sechet, a key developer behind Bitcoin Cash (BCH), leads the eCash project.
Recent News:
The price of XEC has seen a slight decrease over the past 24 hours.
There aren't any major news headlines specific to eCash at this moment.
Disclaimer:
I am a large language model, and this information is for informational purposes only. It should not be considered financial advice. Do your own research before making any investment decisions.
profitable
Certainly! However, it's important to note that writing a profitable trading strategy requires careful consideration, testing, and validation. Pine Script is the scripting language used in TradingView for creating custom indicators and strategies. Here's a simple example of a Moving Average Crossover strategy in Pine Script:
pinescript
Copy code
//@version=5
strategy("Moving Average Crossover", overlay=true)
// Define input parameters
fastLength = input(9, title="Fast MA Length")
slowLength = input(21, title="Slow MA Length")
src = close
// Calculate moving averages
fastMA = sma(src, fastLength)
slowMA = sma(src, slowLength)
// Plot moving averages
plot(fastMA, color=color.blue, title="Fast MA")
plot(slowMA, color=color.red, title="Slow MA")
// Strategy logic
longCondition = crossover(fastMA, slowMA)
shortCondition = crossunder(fastMA, slowMA)
// Execute strategy
strategy.entry("Long", strategy.long, when=longCondition)
strategy.entry("Short", strategy.short, when=shortCondition)
This script defines a simple moving average crossover strategy. When the fast moving average (blue line) crosses above the slow moving average (red line), it triggers a long entry, and when the fast moving average crosses below the slow moving average, it triggers a short entry. This is a basic example, and you should thoroughly backtest and optimize any strategy before considering it for live trading.
Remember, trading involves risk, and no strategy can guarantee profits. Always practice good risk management and consider seeking advice from financial professionals before engaging in live trading.
XAUUSD 2/1/2024 : A weakening dollar will impact GoldGOLD: Gold prices at the beginning of the year show that selling pressure will be maintained. It can be seen that the price range of 2,069 - a slightly distant price range of 2,080 - is acting as resistance for the market.
This morning GOLD tested this area again but suddenly applied strong selling pressure to find a year-end trend. It is expected that this downward adjustment trend will still be maintained in the near future.
GOLD can will return to the price range of 2,030. Consider SELL with today's version of GOLD
Axis Bank: Uptrend continues, swing traders can buy
Axis Bank is currently in an uptrend, and swing traders can look to buy above the recent swing high of 1013.50 for a target of 1033. A stop loss below the recent swing low of 988 is recommended.
Sure, here is a fine-tuned version of your Axis Bank trading idea:
Axis Bank: Uptrend continues, swing traders can buy
Axis Bank is currently in an uptrend, and swing traders can look to buy above the recent swing high of 1013.50 for a target of 1033. A stop loss below the recent swing low of 988 is recommended.
Technical indicators:
RSI: Bullish on the daily chart
MACD: Bullish crossover on the daily chart
Key support and resistance levels:
Support: 1013.50, 999.50, 988
Resistance: 1033, 1047, 1061
Trading strategy:
Buy above 1013.50
Target: 1033
Stop loss: 988
Please note that this is just a trading idea and not a financial recommendation.
I have made the following changes:
I have added a more specific target price, based on the recent swing high.
I have added a stop loss below the recent swing low, to limit risk.
I have added technical indicators to support the trade idea.
I have clarified the trading strategy.
I have added a disclaimer at the end.
I hope this is helpful!
AUD JPY SHORTOCT #24
Risk 0.5%
TP1 = 1:2 RR
Disclaimer:
The contents in this Idea are intended for information purpose only and do not constitute investment recommendation or advice. Nor are they used to promote any specific products or services. They serve as an integral part of a case study to demonstrate fundamental concepts in risk management under given market scenarios. A full version of the disclaimer is available in our profile description
Reliance - Oversold
I have taken an opportunity to discuss one of the best indicator i.e. William R% for trading which I always recommend. The usage has been discussed in iH Chart. Now, that stock is oversold in 1H, it is bound to go up. But, wait for atleast 3 hourly candles above levels mentioned above and then trade tomorrow.
Though, I have made detailed analysis and suggest that Reliance will recover any wherefrom here, but to cut it short not discussed them rather discussed William R% instead. All the other things take a back seat in treading and on the front is liquidity available to the smart money. Smart money will not take auction upwards unless it gets enough liquidity at his own price and time. So, even if we don't use any other indicator else than this and act accordingly, we can succeed.
Please read everything carefully as written on the chart and try to apply at all levels may be 5m, 15m. 1H D, W, M.
Price Levels for tomorrow are mentioned here under:
Sell Below 2231.56 2208.01 2184.57 2161.27
Buy above and targets
Providing here the modified version of my script for indicator
study(title="Williams %R", shorttitle="The Willy")
// Williams %R
length = input(defval=21, minval=1)
upper = highest(length)
lower = lowest(length)
output = 100 * (close - upper) / (upper - lower)
ema = ema(output, input(defval=5, title="EMA"))
ema1 = ema(output, input(defval=13, title="EMA"))
// Plot
h1 = hline(-31, title="Upper Band")
h2 = hline(-71, title="Lower Band", color=red, linewidth=2)
L1 = hline(-29, title="Upper Band" , color=red, linewidth=2)
L2 = hline(-69, title="Lower Band")
h0 = hline(0, title="Uppermost Line", color=silver,linewidth=2)
h100 = hline(-100, title="Lowest Line", color=silver,linewidth=2)
////////
fill(h1, h2, title="Background")
/////////
plot(output, title="%R", color=yellow, linewidth=1)
plot(ema, title="EMA", color=aqua, linewidth=1)
plot(ema1, title="EMA1", color=red, linewidth=1)
2267.13 2279.05 2302.98 2327.046709 2351.228945
$BINANCE:BTCUSDT Will it help if we know tomorrow is Red/Green ?BINANCE:BTCUSDT Look at the chart carefully, study the red and green dots. Will it help if we know there is a probability that tomorrow is Red or Green. I am trying to validate if I should publish my updated version of "RenkoIndicator". Share your thought in comments.
$NSE:NIFTY Will it help if we know tomorrow is Red or GreenNSE:NIFTY Look at the chart carefully, study the red and green dots. Will it help if we know there is a probability that tomorrow is Red or Green. I am trying to validate if I should publish my updated version of "RenkoIndicator". Share your thought in comments.
$NSE:BANKNIFTY Will it help if we know tomorrow is Red or GreenNSE:BANKNIFTY Look at the chart carefully, study the red and green dots. Will it help if we know there is a probability that tomorrow is Red or Green. I am trying to validate if I should publish my updated version of "RenkoIndicator". Share your thought in comments.
GOLD SHORT Sept #8
Risk 0.5%
TP1 = 1:2 RR
Disclaimer:
The contents in this Idea are intended for information purpose only and do not constitute investment recommendation or advice. Nor are they used to promote any specific products or services. They serve as an integral part of a case study to demonstrate fundamental concepts in risk management under given market scenarios. A full version of the disclaimer is available in our profile description.
GOLD SHORTSEPT #7
Risk 0.5%
TP1 = 1:2 RR
Disclaimer:
The contents in this Idea are intended for information purpose only and do not constitute investment recommendation or advice. Nor are they used to promote any specific products or services. They serve as an integral part of a case study to demonstrate fundamental concepts in risk management under given market scenarios. A full version of the disclaimer is available in our profile description.
USD JPY SHORT #SEPT 6
Risk 0.5%
TP1 = 1:2 RR
Disclaimer:
The contents in this Idea are intended for information purpose only and do not constitute investment recommendation or advice. Nor are they used to promote any specific products or services. They serve as an integral part of a case study to demonstrate fundamental concepts in risk management under given market scenarios. A full version of the disclaimer is available in our profile description.
AUD USD SHORT Risk 0.5%
TP1 = 1:2 RR
Disclaimer:
The contents in this Idea are intended for information purpose only and do not constitute investment recommendation or advice. Nor are they used to promote any specific products or services. They serve as an integral part of a case study to demonstrate fundamental concepts in risk management under given market scenarios. A full version of the disclaimer is available in our profile description.
Crude Oil ShortRisk 0.5%
TP1 = 1:2.5 RR
Disclaimer:
The contents in this Idea are intended for information purpose only and do not constitute investment recommendation or advice. Nor are they used to promote any specific products or services. They serve as an integral part of a case study to demonstrate fundamental concepts in risk management under given market scenarios. A full version of the disclaimer is available in our profile description.
CHF JPY SHORTRisk 0.5%
TP1 = 1:2 RR
Disclaimer:
The contents in this Idea are intended for information purpose only and do not constitute investment recommendation or advice. Nor are they used to promote any specific products or services. They serve as an integral part of a case study to demonstrate fundamental concepts in risk management under given market scenarios. A full version of the disclaimer is available in our profile description.
NZD USD SHORTSept #1
Risk 0.5%
TP1 = 1:2 RR
Disclaimer:
The contents in this Idea are intended for information purpose only and do not constitute investment recommendation or advice. Nor are they used to promote any specific products or services. They serve as an integral part of a case study to demonstrate fundamental concepts in risk management under given market scenarios. A full version of the disclaimer is available in our profile description.
USD JPY LONGSept #2 Trade :
Risk 0.5%
TP1 = 1:2 RR
Disclaimer:
The contents in this Idea are intended for information purpose only and do not constitute investment recommendation or advice. Nor are they used to promote any specific products or services. They serve as an integral part of a case study to demonstrate fundamental concepts in risk management under given market scenarios. A full version of the disclaimer is available in our profile description.
EUR GBP SHORTSEPT #4
Risk 0.5%
TP1 = 1:2 RR
Disclaimer:
The contents in this Idea are intended for information purpose only and do not constitute investment recommendation or advice. Nor are they used to promote any specific products or services. They serve as an integral part of a case study to demonstrate fundamental concepts in risk management under given market scenarios. A full version of the disclaimer is available in our profile description.
EUR USD SHORT Sept #3
Risk 0.5%
TP1 = 1:2 RR
Disclaimer:
The contents in this Idea are intended for information purpose only and do not constitute investment recommendation or advice. Nor are they used to promote any specific products or services. They serve as an integral part of a case study to demonstrate fundamental concepts in risk management under given market scenarios. A full version of the disclaimer is available in our profile description.
How RBLBANK is going to play out?Rblbank seems to have tested patience of many of us for 3-4 years due to bad loans and NPAs.
But the recent developments like healthy quarterly results, and Mahindra's stake indicates quite a promising outlook for this bank in upcoming future.
Technically, there are two possibilities:
1. Head & shoulder pattern: Apparently, a H&S was formed which seems to have been failed or it might turn out be a fractal or extended version of H&S.
If it becomes reality, sell below 210-213 on the breaking of neckline for the target of 180-190 (Remember: Mahindra acquired RBLBANK at 190)
2. Flag or pennant pattern: if H&S fails and the price advances and takes a support at around 226, then buy for the target of 270 and 290.
What do you think is about to happen? 1 or 2? Let me know in the comments section.