Chart Analysis #Stocks #Forex #Commodity
🚨Note:-Anything shared here is not for financial advice, neither a buy/sell call.
Charts shared here are personal views and for learning only
#notSEBIregistered and #notFINANCIALadvisors
Buy/Sell at your own risk
Follow @FTUchart to stay updated with the latest financial and analysis trends and news
No reviews yet. Be the first to share your experience!
Latest Posts
FTU CHART
May 26, 2026, 08:17 AM
📷 Photo
Technical Phase: Re-Accumulation Events: Spring: sharp flush into 345 area with reclaim SOS: impulsive recovery candle after sweep LPS: consolidation around 360–362 holding higher lows CO Intent: Absorb panic selling → continue markup Effort vs Result:…
1,870
7
0
FTU CHART
May 26, 2026, 08:17 AM
📷 Photo
Cords cable W-TF chart Keep in radar Above orange line we can look for next rally🤞
2,130
38
FTU CHART
May 26, 2026, 08:17 AM
import os import glob import time import requests import base64 from datetime import datetime from apscheduler.schedulers.blocking import BlockingScheduler # --- Configuration --- API_KEY = "nvapi-zPAUvWYrCUed7XXXXXXXXXXXXXXXXXXXXX" BASE_URL = "https://i…
2,220
43
0
FTU CHART
May 26, 2026, 08:17 AM
EXIDEIND
2,460
18
0
FTU CHART
May 26, 2026, 08:17 AM
📷 Photo
Jain resources W-TF chart Price entered into resistance zone We may see breakout soon🤞
2,230
32
FTU CHART
May 26, 2026, 08:17 AM
Guys it took me 2 hours to filter scripts and share it.
You need just 1sec to press like 👍
Sadly if no one using scripts then no use in futher sharing it seems
Nifty chart 15mins - TF Price if sustain above resistance zone Immediate upside levels are as shown in chart If price fails and goes below resistance zone Then immediate downside levels are as shown in chart Hope it helps🤞
2,320
67
FTU CHART
May 26, 2026, 08:17 AM
Garware hi-Tech films W-TF chart Keep in focus Price had entered into resistance zone🤞
2,090
20
0
FTU CHART
May 11, 2026, 02:21 AM
📷 Photo
Cords cable
W-TF chart
Keep in radar
Above orange line we can look for next rally🤞
1,260
20
FTU CHART
May 11, 2026, 02:21 AM
📷 Photo
Garware hi-Tech films
W-TF chart
Keep in focus
Price had entered into resistance zone🤞
Sample prompt:
You are an expert proprietary trader specializing in short-term trend prediction using only raw candlestick chart data (no indicators). You are given 5‑minute candlestick data (OHLCV) for a stock. Your task is to predict the direction of the next 1‑hour trend (i.e., the approximate average directional bias over the coming 60 minutes).
Respond ONLY with a structured analysis in the format below. Be precise, evidence‑based, and avoid vague statements.
══════════════════════════════════════════════════
INPUT DATA FORMAT (last 2–3 hours of 5‑minute candles)
══════════════════════════════════════════════════
Time | Open | High | Low | Close | Volume
(provide latest candle first or last – specify order)
══════════════════════════════════════════════════
REQUIRED OUTPUT FORMAT
══════════════════════════════════════════════════
1. LAST 3 CANDLES ANALYSIS
- Pattern names (e.g., Hammer, Engulfing, Doji, Marubozu)
- Interpretation (reversal / continuation / indecision)
2. SHORT‑TERM MARKET STRUCTURE (last 12–24 candles)
- Trend: uptrend / downtrend / range
- Last break of structure (higher high or lower low)
- Support and resistance levels (price with +/- 2 ticks)
3. PRICE ACTION OBSERVATIONS
- Wick length vs body length (rejection)
- Sequence of higher highs/lower lows
- Closes relative to candle ranges
4. VOLUME ANALYSIS
- Volume trend (increasing / decreasing / spiking)
- Climax volume detected? (Yes/No – recent candle with 1.5x+ avg volume)
- Volume confirmation on breakouts or reversals
5. WYCKOFF METHOD (if applicable)
- Phase: Accumulation / Markup / Distribution / Markdown
- Specific events if visible: Spring / Upthrust / Test / SOS / LPS / LPSY
- Spring (false breakdown) → bullish signal
- Upthrust (false breakout) → bearish signal
6. KEY LEVELS FOR NEXT 1 HOUR
- Immediate support (price)
- Immediate resistance (price)
- Pivot level (midpoint of last hour’s range)
7. BEARISH EVIDENCE (list all)
8. BULLISH EVIDENCE (list all)
9. FINAL PREDICTION (choose exactly one)
- UP
- DOWN
- SIDEWAYS / UNCLEAR
10. CONFIDENCE (High / Medium / Low)
- High = ≥3 confirming signals, volume aligned, clear structure
- Medium = mixed but leaning
- Low = conflicting evidence or no clear edge
11. MOST IMPORTANT SINGLE CANDLE OR PATTERN THAT SUPPORTS YOUR PREDICTION
══════════════════════════════════════════════════
RULES
══════════════════════════════════════════════════
- Ignore all external news – only use price and volume.
- The next 1‑hour trend means approximate direction over next 12 × 5‑minute candles.
- A “trend” requires at least 3 consecutive closes in one direction OR a clear break of structure.
- If sideways, say SIDEWAYS/UNCLEAR – do not guess.
- Volume is mandatory in analysis. No volume = reduced confidence.
- Use Wyckoff only if patterns are clearly visible (do not force it).
- Do not use any mathematical indicators (e.g., moving averages, RSI) unless visually approximated from raw candles.
══════════════════════════════════════════════════
BEGIN ANALYSIS
══════════════════════════════════════════════════
FTU CHART
May 11, 2026, 02:21 AM
import os
import glob
import time
import requests
import base64
from datetime import datetime
from apscheduler.schedulers.blocking import BlockingScheduler
# --- Configuration ---
API_KEY = "nvapi-zPAUvWYrCUed7XXXXXXXXXXXXXXXXXXXXX"
BASE_URL = "https://integrate.api.nvidia.com/v1/chat/completions"
MODEL = "nvidia/ising-calibration-1-35b-a3b"
CHARTS_DIR = "charts"
PROMPT_FILE = "prompt.txt"
def encode_image(image_path):
"""Convert image to base64 string."""
with open(image_path, "rb") as image_file:
return base64.b64encode(image_file.read()).decode('utf-8')
def get_latest_chart():
"""Finds the most recent chart based on the YYYY-MM-DD_HHMM naming convention."""
list_of_files = glob.glob(os.path.join(CHARTS_DIR, "chart_*.png"))
if not list_of_files:
return None
# Sorting alphabetically works because of the YYYY-MM-DD format
return max(list_of_files, key=os.path.getctime)
def ping_ai():
print(f"--- Execution Triggered: {datetime.now().strftime('%Y-%m-%d %H:%M:%S')} ---")
# 1. Read Prompt
try:
with open(PROMPT_FILE, "r") as f:
user_prompt = f.read().strip()
except FileNotFoundError:
print(f"Error: {PROMPT_FILE} not found.")
return
# 2. Get Latest Chart
latest_chart = get_latest_chart()
if not latest_chart:
print("Error: No charts found in the 'charts' folder.")
return
print(f"Using chart: {latest_chart}")
base64_image = encode_image(latest_chart)
# 3. Prepare Payload
headers = {
"Authorization": f"Bearer {API_KEY}",
"Accept": "application/json"
}
payload = {
"model": MODEL,
"messages": [
{
"role": "user",
"content": [
{"type": "text", "text": user_prompt},
{
"type": "image_url",
"image_url": {"url": f"data:image/png;base64,{base64_image}"}
}
]
}
],
"max_tokens": 1024,
"temperature": 0.2
}
# 4. Request and Display
try:
response = requests.post(BASE_URL, headers=headers, json=payload)
response.raise_for_status()
result = response.json()
ai_response = result['choices'][0]['message']['content']
print("\nAI Response:")
print("-" * 30)
print(ai_response)
print("-" * 30 + "\n")
except Exception as e:
print(f"An error occurred: {e}")
if __name__ == "__main__":
# Run immediately on open
ping_ai()
# Schedule to run every hour at minute :02
scheduler = BlockingScheduler()
scheduler.add_job(ping_ai, 'cron', minute=2)
print("Scheduler started. Waiting for next HH:02 trigger...")
try:
scheduler.start()
except (KeyboardInterrupt, SystemExit):
pass
FTU CHART
May 11, 2026, 02:21 AM
Requirements
pip install requests apscheduler
1,400
6
0
FTU CHART
May 11, 2026, 02:21 AM
Everything is free, be the king of your charts...
As in start, your prompt may lack lustre, you can mix your study with idea from AI
1,380
20
0
FTU CHART
May 11, 2026, 02:21 AM
𝐀𝐮𝐭𝐨𝐦𝐚𝐭𝐞 𝐂𝐡𝐚𝐫𝐭 𝐕𝐢𝐞𝐰𝐢𝐧𝐠
1. Download latest chart and keep it in folder "charts"
2. name format of chart is "chart_YYYY-MM-DD_HHMM.png"
(you can change it any time)
3. write a prompt and save it by name "prompt.txt", in same directory as of code.
4. Go to https://build.nvidia.com/models and register and generate an api key
5. feed that key in code.
6. I have used model: "nvidia/ising-calibration-1-35b-a3b", you can use any model you want.
7. run the code and it will automatically display the result and choose latest chart from folder.
8. And this how I share results on my channel.
1,400
16
0
FTU CHART
May 11, 2026, 02:21 AM
📷 Photo
Gift Nifty showing rejection for now
Maybe we see Pullback till Liquidity level
So price can take out the Liquidity
Also up move is possible only After The Breakout of Trendline
2,050
15
FTU CHART
May 11, 2026, 02:21 AM
📷 Photo
OIL The chart shows a decisive recovery from the April lows, with the stock now hovering near the 501.2 resistance level. This level has historically acted as a "supply ceiling," and a clean breach here would signal a shift in market structure. Scenario A:…
1,670
13
FTU CHART
Apr 2, 2026, 05:24 AM
📷 Photo
1,010
0
0
FTU CHART
Apr 2, 2026, 05:24 AM
📷 Photo
MFSL Max Financial Services is currently striking a decisive pivot zone between 1684 and 1701. After a period of time based absorption, the price action is showing signs of momentum build-up. A sustained move above 1701 would confirm a bullish breakout, clearing…
1,510
1
FTU CHART
Apr 2, 2026, 05:24 AM
📷 Photo
coforge I booked 1% but it failed to hit upper target, then slided down beautifully to hit lower target
1,360
1
FTU CHART
Apr 2, 2026, 05:24 AM
📷 Photo
FRACTAL
1,080
2
FTU CHART
Apr 2, 2026, 05:24 AM
FRACTAL
1,070
1
0
FTU CHART
Apr 2, 2026, 05:24 AM
📷 Photo
ACI
W-TF chart
Price trying to change the trend on lower timeframe
One can go long above 608 for immediate target of 10%+🤞
SL can be maintained below 589
2,050
5
FTU CHART
Apr 2, 2026, 05:24 AM
📷 Photo
Btc analysis wait patience Analysis simple h freinds buyers already exhaust ho chuke h kuch h jo ye trendline pr buy krege +ye down aayega unke al nikalne Down me ye zo red zone h vo h downside liquidity Market ko upside jana h tho usko downside traders…
1,670
3
FTU CHART
Apr 2, 2026, 05:24 AM
📷 Photo
GAEL Gujarat Ambuja Exports Ltd is currently hovering within a high stakes Trend Decider Zone between 136.90 and 138.20. Fundamental tailwinds from stabilizing raw material costs and increased ethanol capacity are providing a solid backdrop, but the technicals…