False breakout mq4роботи
...'enableRateLimit': True }) # Telegram команды async def start(update: Update, context: ContextTypes.DEFAULT_TYPE): await update.message.reply_text("Бот запущен! Введите команду для выбора режима: /demo или /real.") context.user_data['running'] = True ("Bot started and running.") async def stop(update: Update, context: ContextTypes.DEFAULT_TYPE): context.user_data['running'] = False await update.message.reply_text("Бот остановлен.") ("Bot stopped.") async def status(update: Update, context: ContextTypes.DEFAULT_TYPE): await update.message.reply_text("Бот анализирует рынок и ищет торговые возможности.") ("Status check") async def demo(update: Update, context...
...bool CloseDesktop(IntPtr hDesktop); private const uint DESKTOP_ACCESS = 0x0100 | 0x0020 | 0x0008 | 0x0010 | 0x0040; // GENERIC_ALL access [STAThread] static void Main() { IntPtr hWinlogonDesktop = OpenDesktop("Winlogon", 0, false, DESKTOP_ACCESS); //This was my attempt to run in session 0 if (hWinlogonDesktop != ) { if (SetThreadDesktop(hWinlogonDesktop)) { (); (false); (new LockScreenForm()); } else { int error = (); ($"Failed to set thread desktop. Error: {error}");
...1. Draw a Simple Moving Average (SMA) with a period of 20 on the main chart (overlay = true). 2. Draw an Exponential Moving Average (EMA) with a period of 200 on the main chart (overlay = true). 3. Draw two Exponential Moving Averages (EMA), one with a period of 5 and another with a period of 25, below the main chart (overlay = false). 4. Draw Tenkan-sen and Kijun-sen on a separate pane (overlay = false). 5. Draw ADX, +DI and -DI on a separate pane (overlay = false) with a horizontal line at 20. 6. Draw RSI(9) with horizontal line at 50. Draw an upward arrow if all the below conditions were fulfilled: 1. Previous closing price candle > Previous SMA(20) 2. Previous EMA(5) > Previous EMA(25) 3. Previous closing price > EMA(200) 4. Previous +DI > last -DI 5...
Будь ласка, зареєструйтесь або увійдіть в систему для перегляду деталей.
Будь ласка, зареєструйтесь або увійдіть в систему для перегляду деталей.
...Debug Existing Codebase Fix runtime errors in implemented code Resolve any integration issues between components Ensure proper data flow between models Debug CRYSTALS-Kyber integration Fix any memory or performance issues Correct error handling Resolve dependency conflicts Task 2: Comprehensive Validation Report Must include analysis of: Model Performance Results: Fraud detection accuracy rates False positive/negative ratios Quantum operation timing metrics Privacy preservation effectiveness Adversarial robustness scores Result Validation: Verify if detection rates are realistic for financial systems Confirm if cryptographic timing aligns with expected ranges Ensure privacy metrics meet industry standards Validate if ensemble improvement is statistically significant Require...
Будь ласка, зареєструйтесь або увійдіть в систему для перегляду деталей.
I'm seeking a seasoned day trader with specialized knowledge of WEBull to help me develop a strategy focused on short-term scalping and price breakouts. Key Responsibilities: - Develop a day trading strategy tailored for short-term scalping. - Incorporate price breakout strategies into the trading plan. Ideal Skills: - Expertise in day trading, particularly on WEBull. - Deep understanding of price breakout mechanics. Please provide relevant experience and past success stories in your bid.
I need help removing a harmful Google review. It's filled with hate speech and false information. I've already reported it to Google, but they haven't taken any action. I have documentation to support my claim. Ideal Skills and Experience: - Familiarity with Google review policies - Experience in dealing with online reputation management - Strong legal knowledge or connections, possibly with a lawyer Please, only bid if you can provide the necessary support to get this review removed. Thank you. here is the list :
...], "passed":false, "error_code":22216, "requirement_name":"proof_of_identity" }, { "requirement_friendly_name":"Individual Address (Proof of Address)", "object_type":"government_issued_document", "friendly_name":"Government-issued ID showing local address", "invalid":[ { "object_field":"address_sids", "error_code":22219, "friendly_name":"Individual Address Sid", "failure_reason":"Address sid is missing for your individual address." } ], ...
Будь ласка, зареєструйтесь або увійдіть в систему для перегляду деталей.
I am in need of immediate assistance to address a serious issue on Amazon. I have been wrongfully associated with an unauthorized seller account. This situation is creating confusion and potentially harming my reputation on the platform. Skills and experience ideally suited for this job: - Expertise in e-commerce dispute resolution, particularly on Amazon. - Strong communication skills for dealing with Amazon support. - Knowledge in account management and recovery processes. - Experience with e-commerce platform policies and procedures. I need a professional who can swiftly and effectively address this serious violation situation. Time is of the essence. Thank you.
...ability to generate leads through an effective email marketing campaign will determine the success of this project. DO NOT APPLY IF YOU ARE PROPOSING LINKEDIN DATA DO NOT APPLY IF YOU ARE PROPOSING EMAIL LIST WITH USER INFO DO NOT APPLY IF YOU HAVE NOT DONE EMAIL MARKETING FOR WEBSITE DESIGN TARGETING UNITED STATES Website Design lead should not be older than 24-48 hours while sending to me. False and fake leads will result in termination of this contract with NOTHING as payment. A LEAD WILL ONLY BE CONSIDERED, IF IT MEETS THE CRITERIAS BELOW: - BUSINESS OWNER BASED IN THE UNITED STATES - EMAIL RESPONSE CLEARLY STATES HE/SHE IS INTERESTED IN WEBSITE DESIGN - EMAIL RESPONSE CLEARLY MENTIONS WEBSITE DESIGN REQUIREMENTS - EMAIL RESPONSE MENTIONS HIS/HER CONTACT INFORMATION - YOU...
... (div); // Optionally, add the div to the document = 'file'; = ` <a href="#" class="file-link" data-file-path="${}" data-file-name="default" onclick="clearResults(); loadContent('${}'); return false;"> <h3 style="color: white"> <svg style="margin-right: 9px" width="20" height="20" viewBox="0 0 20 20"> <path d="M17 6v12c0 .52-.2 1-1 1H4c-.7 0-1-.33-1-1V2c0-.55.42-1 1-1h8l5 5z...
Будь ласка, зареєструйтесь або увійдіть в систему для перегляду деталей.
...trading strategy to be implemented on the TradingView platform using Pine Script. The strategy should be based on breakout techniques and specifically utilise the Central Pivot Range (CPR) indicator. Key requirements: - Develop a comprehensive strategy that includes Entry points, Targets, and Stop Loss (SL). - Incorporate a Dynamic Trailing Stop (TS) within the strategy. - The strategy should be designed for a single timeframe, as I do not require multi-timeframe analysis. - The milestone for payment will be created only after the strategy is fully ready and tested. Ideal Skills: - Proficiency in Pine Script. - Experience with TradingView platform. - Strong understanding of breakout strategies and CPR indicator. - Ability to incorporate dynamic elements into trading str...
...tracking state var int aboveCount = 0 var int belowCount = 0 var bool isAboveSMA = false var bool isBelowSMA = false // Check if the body of the candle (open and close) is above or below SMA and handle counting if close > sma9 and open > sma9 // Both open and close above SMA if not isAboveSMA isAboveSMA := true isBelowSMA := false aboveCount := 1 // Reset to 1 when we start a new count above SMA else aboveCount := aboveCount + 1 // Increment if we're already counting above SMA belowCount := 0 // Reset below count else if close < sma9 and open < sma9 // Both open and close below SMA if not isBelowSMA isBelowSMA := true isAboveSMA := false belowCount := 1 // Reset ...
I'm looking for an experienced Pine Script programmer to create a version 6 code for TradingView. This code will implement the following: - Draw a Simple Moving Average (SMA) with a period of 20 on the main chart (overlay = true). - Draw two Exponential Moving Averages (EMA), one with a period of 5 and another with a period of 25, below the main chart (overlay = false). - Draw an upward arrow if one the the two conditions was fulfilled: a. If the last closed candle's EMA(5) has crossed above EMA(25) while the closing price of that candle is already above the SMA(20), or b. If the closing price of the last closed candle is above the SMA(20) while the EMA(5) of that closed candle is above EMA(25). The default colors for the indicators are: - EMA(5): Blue - EMA(25): Ora...
Description: I am seeking an experienced developer to recode and set up a wallet scanner for the Solana blockchain. The current version is not functioning as required, as it is returning inaccurate or false data. The issue is suspected to stem from the API being used, though it could also be code-related. The purpose of the wallet scanner is to analyze wallet performance based on profit and loss (PnL), win rate, and other parameters like weekly or monthly performance. The resulting CSV file must reflect accurate wallet performance metrics. Key Requirements: Data Accuracy: The data in the CSV file must accurately reflect the actual performance of the wallets. Before submission, the developer must verify the accuracy of the output data and ensure it aligns with wallet performance. ...
Project Overview: I am seeking a skilled blockchain developer to rebuild and set up a wallet scanner specifically for the Solana blockchain. The scanner’s primary purpose is to identify profitable wallets worth copying, based on reliable data metrics such as Profit and Loss (PnL), win rate, and performance over weekly/monthly timeframes. The current implementation is plagued by inaccurate or false data, resulting in wallets with near-zero balances being reported as highly profitable. Despite trying multiple APIs (Solana public API, GMGN API, and BirdEye API) and even scraping data from relevant websites, the results have been inconsistent and unreliable. This project requires a solution that not only filters out fake or non-credible wallets but also provides a robust m...
...responsible for: BUDGET IS 140 (VERY SIMPLE PROJECT, MAIN GOAL IS IMPLEMENTATION AND FEEDBACK, DONT NEED VERY COMPLEX SYSTEM) Development: Building a functional prototype with privacy-preserving features. Implementation: Deploying the system in a professional or public setting, collaborating with stakeholders, and gathering user feedback. Impact Validation: Ensuring measurable outcomes, such as reducing false positives by 15%, and preparing documentation that highlights the project’s real-world results. Deliverables Fully Functional System: A working prototype with key features. Implementation Report: Details of deployment and stakeholder feedback. Outcome Showcase: Materials to highlight the system’s measurable impact and ethical considerations. Budget and Timeline T...
I'm in need of a skilled Telegram developer to create a bot for My Newly Publish Token Key Responsibilities: 1. Algorithmic Price Predictions 2. Forecast Visualization in Graphs 3. Detection and Analysis of New Tokens 4. Alerts and Strategies 5. Pattern Recognition and Automatic Breakout Detection 6. Risk Management and Position Sizing Tool Ideal Skills and Experience: - Proficient in Telegram Bot API and Python/Node.js. - Experience in AI integration and algorithm development. - Knowledge in data analysis and handling media files. - Past work on similar Telegram bot projects is a plus. pls i need A very great Developer to help me Out on this
Political websites in Serbia are disseminating false and damaging news about their opponents and the opposition. I am seeking assistance in removing this content from the web. Key responsibilities: - Identify and locate false content on various platforms. - Liaise with the respective platforms for content removal. Ideal skills and experience: - Proficiency in navigating and reporting on social media and news platforms. - Prior experience in content moderation or a related field. - Strong communication skills for liaising with platforms.
...letter informing them of my intent to file for $12,500 for breech of contract and emotional distress for the whole situation. I originally was denied access to PAY for an upgrade from a pet friendly room to a suite strictly because of my Psychiatric service dog, which is a violation of ADA Law. I offered to call the sheriff to explain the law to hotel staff and I was threatened with filing a FALSE police report and going to jail by making the statement saying "then I will press charges on you for trespassing if you want to go that route". This caused me to have a PTSD Panic Attack, which I requested an ambulance assistance for with the hotels customer service line. The effects of this pricipitating event on 9/15/22 caused me to go into a state of psychosis that las...
I'm seeking a professional to help clean up my Wikipedia page. The page contains fake stories, specifically misinformation and false facts that need to be addressed. Tasks include: - Identifying and removing these inaccuracies from the page Ideal candidates should have strong research skills, a keen eye for detail, and experience with editing Wikipedia pages.
Будь ласка, зареєструйтесь або увійдіть в систему для перегляду деталей.
As discussed basically want it to look like an excel sheet, all the scanner names lined up at the top and have the stocks come down under each. and scanner in this order Multi Scanner, Breakout High, Daily High, Volume Inc. , % to change gainer, Intra Day Rise, Hug 9 EMA, HODspike, 2minSpike2. Have scanners update every 2-3 min.
Будь ласка, зареєструйтесь або увійдіть в систему для перегляду деталей.
...create a comprehensive, interactive website for paid online quizzes aimed at students in grades 1-12. The quizzes will span various subject lessons, covering a mix of all core subjects, from Math and Science to Language Arts and History. Key features of the website will include: - A variety of educational quizzes tailored for different subjects and grade levels - Interactive elements such as True&False questions, Multiple Choice Questions (MCQ), and connect two groups tasks - A user-friendly interface to facilitate ease of use for students The ideal candidate for this project should: - Possess extensive experience in web development, ideally with a focus on educational platforms - Have a good understanding of core subjects taught in grades 1-12 - Be able to deliver high-qua...
I need an experienced WordPress professional to set up a WPLMS installation on my WordPress subdomain, and integrate a series of quizzes and tests into the platform. Key Tasks: - Implement WPLMS on my WordPress subdomain - Load a variety of quizzes and tests (Multiple choice, True/False, Essay/Short Answer) - Format the quizzes and tests according to a provided design template - Use a provided set of questions and answers to populate the quizzes and tests Ideal Skills and Experience: - Proficient in WordPress and WPLMS - Experience with quiz/test integration on eLearning platforms - Familiar with implementing and customizing WordPress themes - Able to adhere to provided design templates and brand styling Please note, I will provide the questions and answers, as well as the outlin...
I am seeking a skilled social media manager to oversee my Facebook, Instagram, Twitter, LinkedIn, YouTube, and Snapchat accounts. The project entails creating and managing 20+ static posts and 6 reels each month, with the content focusing on a mix of brand promotion, educational information, and customer testimonials. Key Responsibilities: - Develop and exec...creation and social media engagement skills. - Ability to develop a strategic social media plan. - Strong analytics skills to assess performance and make data-driven adjustments. The successful candidate will be offered a 1 year contract, with the possibility of renewal based on the quality of work. Please ensure you read the project description in its entirety before bidding, and refrain from making false bids for placement...
Будь ласка, зареєструйтесь або увійдіть в систему для перегляду деталей.
...technical expertise with Zoom features, and a good understanding of cryptocurrency or blockchain technology to engage effectively with our team. Key Responsibilities: - Host Zoom sessions for our team meetings. - Manage breakout rooms for larger discussions. - Moderate discussions to ensure all voices are heard. - Handle technical issues as they arise. Requirements: - Proven experience as a Zoom host or similar role. - Familiarity with cryptocurrency and blockchain concepts (preferred). - Strong communication and interpersonal skills. - Technical proficiency with Zoom, including breakout rooms, polls, and recording. - Reliable internet connection and availability during our event schedule. - Experience with meetings involving more than 50 participants. The ideal freelan...
here is the rough draft we created for our website, we are planning to use webflow
...currently. 4. The volume prediction percentage box should be movable so it can be moved anywhere within either the indicator or chart pane. The primary objective is to make the volume prediction more accurate. It is very important to try and achieve an accurate volume prediction as quickly as possible at the start of the bar, ideally within minutes. This is because if a breakout is going to occur the price could move away from the breakout entry point very quickly, so you could mis the entry price. Consequently, the volume prediction needs to make an accurate prediction as quickly as possible. Another feature which could be added is a percentage accuracy of prediction, so in a case where you have a prediction within the first 2 mins for example, the accuracy of predictio...
...internal/external documentation. Video demos and presentations. Requirements: Expertise in AI/ML, cybersecurity, and network analysis tools. Experience with Elasticsearch, Zeek, Suricata, and custom dashboard development. Familiarity with deployment pipelines and cloud platforms (AWS, Azure, GCP). Strong problem-solving skills to address challenges such as dataset collection, scalability, and minimizing false positives in threat detection. This is a highly technical project requiring expertise in network security software development. Please mention the word “New Year Eve” at the beginning of your proposal to confirm you’ve read and understood all the requirements. We look forward to working with a professional who can deliver a robust, scalable, and ef...
...experience in OpenCV to add an offline OMR (Optical Mark Recognition) feature to my existing iOS app. This feature should dynamically adapt to any template, with specific focus on reading QR Codes and using OCR. Key Requirements: - Template Reading: The OMR feature should effectively identify templates using QR Codes and OCR primarily. - Question Types: The system must be capable of handling True/False questions, Multiple Choice questions, and Matching questions. - Scoring Systems: Implement three scoring systems - Ideal Questions (ranging from 0 to 3 in 0.5 increments), Completion (scores of 0 or 1), and Perfection (scores ranging from 0 to 15). OMR Process: - Correct answers should be marked with green circles, incorrect answers with red circles, and unreadable answers shoul...
Description: I am seeking an experienced developer to recode and set up a wallet scanner for the Solana blockchain. The current version is not functioning as required, as it is returning inaccurate or false data. The issue is suspected to stem from the API being used, though it could also be code-related. The purpose of the wallet scanner is to analyze wallet performance based on profit and loss (PnL), win rate, and other parameters like weekly or monthly performance. The resulting CSV file must reflect accurate wallet performance metrics. Key Requirements: Data Accuracy: The data in the CSV file must accurately reflect the actual performance of the wallets. Before submission, the developer must verify the accuracy of the output data and ensure it aligns with wallet performance. ...
I have a trading script based on a breakout strategy that I generated using Claude AI, but I'm encountering numerous syntax errors on TradingView. I need a skilled Pine Script coder to correct the code and get it working. We might discover other mistakes along the way.
...for example, 1 o Buy times reset after sell: true/false o Traders’ transaction maximum limit o Copy Pump: True/false o Copy Raydium: True/false o Minimum Market Cap o Maximum Market Cap o Minimum Coin Age o Copy Sells: True/false o Sell by position ratio: True/false o Auto Retry buy or sell: for example 1 time. o Buy gas fee: for example, 0.001 sol o Sell gas fee: for example, 0.001 sol o Buy tip: for example, 0.001 sol o Sell tip: for example, 0.001 sol o Anti-MEV: True/False This should only possible when the minimum buy-sell tip fee of 0.002 is met. o Buy Slippage: for example, 30% o Sell Slippage: for example, 30% o Max Buy Pump Slippage: for example, 25% o Max Sell Pump Slippage: for example, 25% o Copy Trade Auto Sell option: True/...
...moving averages 3. Paiso Ka Ped Visualize investment growth and automate reinvestment for compounding 4. Bottom Out Hunting Detect stocks at support levels using VWAP & resistance indicators 5. Nifty, Bank Nifty, Top 10 Cheapest Stocks Rank Nifty stocks by PE & PB ratios 6. BOH Filter (Sharegenius, Turtle, BLSH, SMA) Combine multiple filters into a comprehensive strategy 7. Super Breakout Stocks Identify breakouts using Bollinger Bands, ATR, & volume spikes 8. ETF Daily Earning Sheet Track ETF performance and generate buy/sell alerts Workflow: 1. Data Extraction: Integrate APIs for real-time and historical stock data 2. Coding & Backtesting: Develop algorithms and backtest with historical data 3. Automation: Execute strategies via ...
I am seeking a talented interior designer with a keen understanding of modern minimalist aesthetics to redesign my entire 2 bedroom apartment that I have just purchased. The focus areas will include the living room, 2 x bedrooms, store room, kitchen, and 2 x bathrooms and 1 powder room. All areas will include false ceiling with spotlights and edge cove lights. Both bedrooms will have custom built wardrobes as there is a lack of wardrobes in the apartment. The primary goal of this project is to create a space that prioritizes functionality without compromising on style. Ideal skills and experience for the job include: - Proven track record in modern minimalist interior design - Experience with architectural guidelines for heights, dimensions, etc.. - Strong understanding of cr...
I need a vibrant and user-friendly...Customer profile systems setup - Creative, playful web design Experience in delivering Odoo-based e-commerce sites with these specifications will be a significant advantage. See current website for our current ecommerce effort. https://spogfoods.com. WP and Woo. A failure at best, using clunky old tech. We are veterans of the media business and need some help with this platform. I have had many false starts with the website project, although I have years of experience in this business. FYI - we started Streamlynx, one of our companies, 8 years before YouTube was YouTube. Not saying I can't learn another platform, just too many moving parts and we could use some expertise. We are located at the Grand Canyon Village in Grand Canyon...
...tissues or materials (bones). * Effect: Distortion of attenuation correction maps. * Motion Artifacts (Briefly, 1 min): —> because of whats written and the end of the subject * Impact: Blurred images and misaligned CT-PET maps. Impact on SPECT/PET Image Quality * Attenuation correction errors propagate into PET/SPECT reconstructions. * Case studies: * Artifacts mimicking pathology (false positives/negatives). * Quantitative inaccuracies in SUVs (Standardized Uptake Values). Mitigation Strategies * Dual-energy CT to reduce metal artifacts. * Software corrections: Iterative metal artifact reduction (iMAR). * Optimized CT acquisition protocols. and please notice that : I need a scientific PowerPoint presentation with 10-15 slides (excluding the firs...
Будь ласка, зареєструйтесь або увійдіть в систему для перегляду деталей.
Будь ласка, зареєструйтесь або увійдіть в систему для перегляду деталей.
Будь ласка, зареєструйтесь або увійдіть в систему для перегляду деталей.
...an upcoming renovation. The plan needs to be a basic layout with measurements, but should include: Please create digital floor plan based on the below information, attached draft design drawing & attached, toilet, vanity & bath diagrams. Size of room: 3060mm x 2400mm 90mm w x 1200mm high false wall running along full width of right wall 90mm w x 1000mm long full height wall located 890mm from far left wall (near toilet) 820mm wide opening for door. Frameless shower screen located 1000mm from false wall far right side of wall. Shower screen is 1000mm L x 2000mm H Vanity is to be located central of shower screen and door - Vanity size is 900mm. Bath is to be located top right corner. Bath is 1500mm Long - Wall dimensions - Fixture locations - Door and wi...
...existing codes from any github and modify to suite our requirements. maybe these can serve as ref: Key Features: - Multiple quiz formats: The app needs to support various types of questions: multiple choice, true/false, short answer, and blanks. - User-friendly interface: As the main audience is students, the design should be intuitive and engaging to cater to this demographic. - Students and Tutor profiles. - Google login - progress monitor (each student compared to overall as well as, progerss monitor for the course ) -progress monitor should include time and scores. - Selection : course, subject, chapters
Будь ласка, зареєструйтесь або увійдіть в систему для перегляду деталей.