"tic tac toe" chart
Info
The "tic tac toe" chart is a Script for MetaTrader 4 that the script works on any symbol and timeframe. in order to start the script, drag onto the current chart.
Usage
This tool is typically used for enhancing chart analysis and decision making.
Platform
This Script works exclusively on MetaTrader 4 (both build 600+ and newer versions).
Setup
Place the downloaded file in MQL4/Scripts folder via File ? Open Data Folder in MetaTrader 4.
How to Install and Use "tic tac toe" chart
1. Installation: Move your script file into the MQL/Scripts directory and restart the platform.
2. Execution: Drag the script onto a chart; it will perform a one-time action, such as closing all open orders or clearing chart objects.
3. Editing: Use MetaEditor (F4) to modify code, click "Compile," and verify no errors appear in the terminal before running.
4. Removing: Scripts stop automatically, but you can remove them manually by right-clicking the chart and choosing "Remove Script."
Frequently Asked Questions
Q: How are scripts different from EAs? A: Scripts execute a single action and then stop; EAs monitor the market and trade continuously.
Q: Can I assign a hotkey to a script? A: Yes, right-click the script in the Navigator, select "Set Hotkey," and define your preferred keyboard shortcut.
Q: Why did my script stop? A: Scripts are designed to stop immediately after finishing their programmed command; this is normal behavior.
What this tool does
the script works on any symbol and timeframe.
Typical Use Case
This Script excels in automated trading and technical analysis on MetaTrader 4.
Compatible Platform & Setup
This Script works on MetaTrader 4. Place the file in the MQL4/Scripts folder and restart the terminal.
Description & Settings
Related: fibonacci potential entry - mt4 - another powerful script for MetaTrader 4 traders.
the script works on any symbol and timeframe.
in order to start the script, drag onto the current chart. in the "general" tab of the script parameters window, flag the "allow dll imports" and unflag the "confirm dll function calls" parameter. in the "inputs" tab set the parameters required for script operation and click ok.
Also recommended: ct g-modify date - similar script with strong performance on MetaTrader 4.
input parameters: kletka - size of a cell in pointsrazvorotkletka - the number of cells required for a reversal (the default values are for the eur/usd pair with 5 decimal places in the quotes)
once the information the start up on the current chart appears, it is necessary to open an offline 2-minute chart on the current instrument in the following way. in the "file" menu select "open offline". in the appearing window, select the 2-minute offline chart on your instrument (for example, eurusd,m2) and press the open button.
next, select the "candlesticks" display mode for the opened chart.
the chart is plotted based on the history data contained in the current working chart in accordance with the classic description of the "tic tac toe" chart. next, the chart is plotted based on the current quotes.
the column height in points for each candle is specified in the "volume" parameter, and the column end time is used as the time.
for a more visual representation of the current quote, the last candle on the chart is displayed with a wick. the older candles are displayed without wicks.
the chart display method is based on the script period_converter.mq4
You may also like: price movement statistics: amplitude analysis - excellent alternative for script users on MetaTrader 4.
Source Code
#property copyright "robotfx"
#property link "https://robotfx.org"
#property show_inputs
#include <winuser32.mqh>
static string s_ver="1.0"; //
extern int kletka=50; //
extern int razvorotkletka=2; // - - ,
static int shum=0; //
static int exthandle=-1; //
static int kurs=0; //
.......
⚠ Limitations & Risk Warning
- This tool is provided for educational and testing purposes only.
- Past performance does not guarantee future results.
- Trading involves substantial risk of loss. Use on a demo account first.
- Results may vary depending on market conditions, broker, and settings.
- We recommend thorough backtesting and forward testing before using with real funds.