Bug, or you're custom betting sequence? Your sequence on loss is causing the lots to act like that.
Posts made by jstap
-
RE: A BUG ABOUT BETTING:CUSTOM SEQUENCE / LOOPposted in Bug Reports
-
RE: Trade limit protifable or notposted in Questions & Answers
No all blocks normally need to connected to something, there is a general logic, blocks(s) do something, then connect to other blocks to do something else, you stop the tree when all has been completed
-
RE: Trade limit protifable or notposted in Questions & Answers
Position created is purple, they can be singular. Check loss is light pink, this needs to be under dark. In the instructions is what I am classing as trees.
-
RE: Trade limit protifable or notposted in Questions & Answers
By trees I mean a separate set of blocks, doing one job, you can then read the result in another tree. Light pink only goes under dark, they are like a 2 block set up to make one.
-
RE: custom indicator buffer not recognize !posted in Questions & Answers
Are you getting usable values from it? Draw a line so you can see what works.
-
RE: Trade limit protifable or notposted in Questions & Answers
You will have to set up trees doing this, on trade, trade closed, check profit of last closed, count into a win/loss variable. When a trade placed count into a variable, check profit over period of time above buy/sell, these are the general principles, set up and test, start with one concept, when working, add others.
-
RE: Set "current timeframe" for next blocks isn't workingposted in Questions & Answers
Light pink blocks only go under dark, the time frame blocks need other blocks underneath.
-
RE: how can i create robot consisting of two indicators?posted in General Discussions
It does mate, test and remove single blocks, add a new shared link if not working.
-
RE: گروه روبومستر سلیمانی خواهposted in Questions & Answers
You can do it with time and price: ChartXYToTimePrice
ChartTimePriceToXY
Converts the coordinates of a chart from the time/price representation to the X and Y coordinates.bool ChartTimePriceToXY(
long chart_id, // Chart ID
int sub_window, // The number of the subwindow
datetime time, // Time on the chart
double price, // Price on the chart
int& x, // The X coordinate for the time on the chart
int& y // The Y coordinates for the price on the chart
);
Converts the X and Y coordinates on a chart to the time and price values.bool ChartXYToTimePrice(
long chart_id, // Chart ID
int x, // The X coordinate on the chart
int y, // The Y coordinate on the chart
int& sub_window, // The number of the subwindow
datetime& time, // Time on the chart
double& price // Price on the chart
); -
RE: Using more than 1 time filterposted in Tutorials by Users
they need to be connected to no trade yellow, or a separate if trade block.
-
RE: how can i create robot consisting of two indicators?posted in General Discussions
This block isn't working on RSI, it's working on MA, correct this to RSI, and it should work.
-
RE: Make EA only work on on 3 trading accountposted in Questions & Answers
on init, condition block, login != xxxxxx, another condition with 2nd number, another condition with 3rd, terminate block, all connected by orange.
-
RE: how can i create robot consisting of two indicators?posted in General Discussions
Project screen, create a shared link, open in web page, copy address bar and add here.
-
RE: Using more than 1 time filterposted in Tutorials by Users
You're time filter needs to be above everything
-
RE: Customs Indicatorsposted in Questions & Answers
You can find out how in instructions, if a custom indicator, add in my indicators.
