TAAFT
Free mode
100% free
Freemium
Free Trial
Deals
Create tool

Drasko Boskovic

@draskoboskovic Tasks: 118
🛠️ 10 tools 🙏 471 karma
Strategist
Joined: February 2024

Drasko Boskovic's tools

  • Flirty
    Generate charming, witty messages for romantic conversations.
    Open
    4
    1
    1
    Released 15d ago
    100% Free
    Flirty website
  • iPhone background designer
    AI-crafted iPhone wallpapers that actually look good.
    Open
    16
    5
    7
    Released 25d ago
    100% Free
    iPhone background designer website
  • Code AI builder
    Transform coding challenges into clear solutions.
    Open
    490
    209
    4.8
    185
    Released 25d ago
    100% Free
    # Enhanced Pine Script with 5/15/1 Hour Confirmation for Buy Signal The following Pine script is designed for the Indian market and incorporates a multiple confirmation strategy with buy and sell signals. The script uses a combination of indicators to generate signals, ensuring that no repeat signals are produced. Additionally, it includes a confirmation mechanism for buy signals based on 5, 15, and 1-hour timeframes. ## Indicators Used: - Super Trend - RSI (Relative Strength Index) - MACD (Moving Average Convergence Divergence) ## Pine Script: ```pinescript //@version=5 strategy("Indian Market Multiple Confirmation Strategy with 5/15/1H Confirmation", overlay=true) // Parameters length = input(10, title="Super Trend Length") src = close rsiLength = input(14, title="RSI Length") macdLength = input(12, title="MACD Length") signalLength = input(9, title="MACD Signal Length") // Super Trend var float superTrend = na var float prevSuperTrend = na if na(superTrend) superTrend := src prevSuperTrend := superTrend else prevSuperTrend := superTrend atr = ta.atr(src, length) superTrend := if (src > prevSuperTrend + atr * 0.5) prevSuperTrend + atr * 0.5 else if (src < prevSuperTrend - atr * 0.5) prevSuperTrend - atr * 0.5 else prevSuperTrend // RSI rsi = ta.rsi(src, rsiLength) // MACD macd = ta.ema(src, macdLength) - ta.ema(src, signalLength) signal = ta.ema(macd, signalLength) // Buy and Sell Signals buyCondition = ta.crossover(superTrend, src) and rsi < 30 and macd > signal sellCondition = ta.crossunder(superTrend, src) and rsi > 70 and macd < signal // 5/15/1H Confirmation for Buy Signal buyConfirmation5H = request.security(syminfo.tickerid, "5", close > src) buyConfirmation15H = request.security(syminfo.tickerid, "15", close > src) buyConfirmation1H = request.security(syminfo.tickerid, "1", close > src) // Plot Signals if (buyCondition and buyConfirmation5H and buyConfirmation15H and buyConfirmation1H) label.new(bar_index, low, "Buy", yloc=yloc.belowbar, color=color.green) strategy.entry("Buy", strategy.long) if (sellCondition) label.new(bar_index, high, "Sell", yloc=yloc.abovebar, color=color.red) strategy.entry("Sell", strategy.short) // No Repeat Signals var float prevBuyPrice = na var float prevSellPrice = na if (buyCondition and buyConfirmation5H and buyConfirmation15H and buyConfirmation1H and (na(prevBuyPrice) or close > prevBuyPrice * 1.01)) prevBuyPrice := close if (sellCondition and (na(prevSellPrice) or close < prevSellPrice * 0.99)) prevSellPrice := close ``` ## Explanation: The script uses the Super Trend, RSI, and MACD indicators to generate buy and sell signals. A 5, 15, and 1-hour confirmation mechanism is added for buy signals to ensure accuracy. The `request.security()` function is used to fetch data from different timeframes. ## Best Practices: - This script is designed for educational purposes only and should not be used as is in a live trading environment. - Always backtest and validate any trading strategy before using it in live markets. - Adjust the parameters according to your trading strategy and risk tolerance. ## Libraries and Frameworks: - This script uses the Pine Script language, which is specifically designed for trading and financial analysis on the TradingView platform. ## Potential Pitfalls: - The script uses multiple indicators, which can lead to conflicting signals. Always monitor the script's performance and adjust the parameters as needed. - The no-repeat signal mechanism may not work perfectly in all market conditions, and you may miss some trading opportunities. By following this guide, you can create a Pine script that incorporates a multiple confirmation strategy with buy and sell signals for the Indian market, along with a 5/15/1-hour confirmation for buy signals. Always use this script as a starting point and modify it according to your specific trading needs and risk tolerance.
    Great tool! And totally free! Directly from haven
  • Hashtag Pro
    Generate 15 strategic, trending hashtags for any topic.
    Open
    18
    5
    6
    Released 25d ago
    100% Free
    Hashtag Pro website
  • Token design
    AI-driven token designs for cutting-edge visuals.
    Open
    47
    4.5
    8
    Released 11mo ago
    100% Free
  • Hot/ai-background-generator-by-photoroom
    AI-generated backgrounds for stunning visuals.
    Open
    171
    5
    3.6
    20
    Released 11mo ago
    100% Free
  • Username Cool Generator
    AI-crafted, catchy usernames for your digital identity.
    Open
    27
    2
    12
    Released 11mo ago
    100% Free
    **Username Cool Generator** Please provide a brief description of the user's favorite activities, hobbies, or character traits, and I'll generate ten unique and catchy usernames for them! **Waiting for input...** (Please respond with the user's description, and I'll generate the usernames) **Username Examples (sample input: "book lover, introvert, coffee enthusiast")** 1. **PageTurner** - A nod to the user's love for books, with a fun twist on "page turner" as a clever and memorable username. 2. **CoffeeReads** - Combines two of the user's favorite things: coffee and reading, making for a cozy and inviting username. 3. **IntrovertInk** - A clever play on the user's introverted personality, paired with their love for writing and books, symbolized by "ink." 4. **BrewedWords** - A creative combination of coffee and words, highlighting the user's passions for writing and coffee. 5. **QuietCorner** - A soothing username that reflects the user's introverted nature and love for quiet, cozy spaces. 6. **LibraryLatté** - A clever blend of the user's love for books and coffee, evoking a sense of a peaceful library atmosphere. 7. **BookishBean** - A whimsical username that combines the user's love for books with their affection for coffee, represented by the "bean." 8. **InkSipper** - A fun and quirky username that pairs the user's love for writing with their coffee habit. 9. **StorySavor** - A username that captures the user's love for stories and their appreciation for the simple pleasures in life, like a good cup of coffee. 10. **ReadRelax** - A calming and inviting username that reflects the user's love for reading and relaxation. **Please provide the user's description to generate their unique usernames!**
  • Dungeons Dragons Script Generator
    AI-powered D&D adventure generator
    Open
    84
    4
    4.0
    20
    Released 11mo ago
    100% Free
    # The Scepter of Sorrow ## Main Characters: - **Alira Moonwhisper**: Elven ranger seeking to prove herself - **Grunk Ironfist**: Dwarf barbarian with a heart of gold - **Zephyra**: Tiefling sorceress with a mysterious past ## Act 1: The Quest Begins *The party gathers in the Prancing Pegasus tavern in the town of Willowbrook. A hooded figure approaches their table...* **Hooded Figure**: "I hear you're adventurers for hire. I have a task that requires discretion and skill." **Alira**: *eyes narrowing* "And who might you be?" **Hooded Figure**: *pulls back hood, revealing an elderly man* "I am Archwizard Thalion. The Scepter of Sorrow has been stolen from my tower. It must be retrieved before it falls into the wrong hands." **Grunk**: *slams mug on table* "What's in it for us?" **Thalion**: "Gold, of course. And the gratitude of the Mage's Council." **Zephyra**: *leans forward, intrigued* "Tell us more about this scepter..." **Thalion**: "It has the power to manipulate emotions. In evil hands, it could sow chaos across the realm." > Player Choice: > 1. Accept the quest > 2. Negotiate for more gold > 3. Decline and seek other adventures ## Act 2: The Whispering Woods *The party travels to the edge of the Whispering Woods, where Thalion's scrying placed the thieves...* **Alira**: *examining tracks* "Three humanoids passed this way. One limping." **Grunk**: "Good. Injured prey is easier to catch." **Zephyra**: *shudders* "These woods give me an uneasy feeling..." *As they venture deeper, whispers seem to emanate from the trees themselves...* > Player Choice: > 1. Follow the tracks directly > 2. Attempt to communicate with the whispering trees > 3. Set up camp and wait for nightfall *If players choose to follow tracks:* You come upon a clearing where three bandits are arguing around a campfire. The Scepter of Sorrow lies nearby. **Bandit Leader**: "We should use it! Imagine the power we'd have!" **Limping Bandit**: "Are you mad? That thing's cursed!" > Combat Encounter: > - 3 Bandits (adjust difficulty as needed) > - Surprise round possible with successful Stealth check *If players choose to communicate with trees:* **Ancient Tree**: *creaking voice* "Beware... the scepter feeds on sorrow... it will consume all..." > Skill Challenge: > - Persuade the trees to aid you > - DC 15 Persuasion or Nature checks > - Success grants advantage on upcoming encounters ## Act 3: Confronting the Thieves *However the party approaches, they must ultimately face the bandits and retrieve the scepter...* **Zephyra**: *reaching for the scepter* "Such power... I could do so much good with this..." **Alira**: "Zephyra, no! Remember why we're here." **Grunk**: "Bah! Let's smash the cursed thing and be done with it!" > Player Choice: > 1. Return the scepter to Thalion > 2. Attempt to destroy the scepter > 3. Keep the scepter for themselves ## Epilogue *The party's choice leads to one of several outcomes:* 1. **Returned**: Thalion rewards the party, but whispers of the scepter's power spread... 2. **Destroyed**: A wave of emotion sweeps the land as the scepter breaks. What consequences will follow? 3. **Kept**: The party gains a powerful artifact, but also the attention of dangerous foes... *End your session with hints of future adventures based on their choice!*
  • Holy Scripture Generator
    AI-crafted spiritual verses for modern enlightenment.
    Open
    13
    1
    Released 11mo ago
    100% Free
    "As the rivers flow ceaselessly to the sea, so too must our compassion flow effortlessly to those in need. May our hearts be vessels of kindness, overflowing with empathy and understanding, that we may quench the thirst of a world parched by indifference." "In the stillness of the night, when fears and doubts assail us, may the gentle whispers of faith guide us back to the path of serenity. May we find solace in the promise that we are never alone, and that the divine presence illuminates even the darkest of paths." "The threads of our lives, though disparate and fragile, are woven into the tapestry of humanity. May we cherish the intricate beauty of our diversity, and strive to strengthen the fabric of our global community with every thread of kindness, compassion, and love." "As the morning sun dispels the shadows, so too can our collective efforts dispel the darkness of injustice and inequality. May our united voices rise as a chorus of hope, demanding a world where every soul can bask in the warmth of freedom, dignity, and respect." "The ancient trees stand tall, their wisdom whispered on the winds of time. May we learn from their resilience, their adaptability, and their quiet strength, that we may weather the storms of life with equanimity and poise."
  • Social networking tool
    Generate eye-catching social media visuals with AI.
    Open
    335
    55
    3.7
    102
    Released 11mo ago
    100% Free

Comments

Drasko Boskovic
🛠️ 10 tools 🙏 471 karma
Rated it
Great tool! And totally free! Directly from haven
0 AIs selected
Clear selection
#
Name
Task