The Great Wisdom Formula explains, how to use the formula in the Great Wisdom

Updated on Financial 2024-04-30
12 answers
  1. Anonymous users2024-02-08

    A1 means that the difference between the ** price and the opening price is less than and the highest and lowest price (i.e., the fluctuation range) is greater than 2%, which is the meaning of the doji.

    A2 indicates that the day before is a Doji in line with A1, but this day is no longer true.

    A3 indicates that the lowest and ** prices of the previous day are both the lows of the last 13 days.

  2. Anonymous users2024-02-07

    a1:=abs(close-open)/open< and (high-low)/abs(close-open)>2;

    A1 Assignment: **Price - Absolute Value of the Opening Price Opening Price< and (Most**-Low) **Price - Absolute Value of the Opening Price"2

    a2:=count(a1,2)=1 and count(a1,1)=0;

    A2 is assigned: Number of days meeting a1 in 2 days = 1 and Number of days meeting a1 in 1 day = 0

    a3:=ref(low,1)=llv(low,13) and ref(c,1)=llv(c,13);

    A3 Assignment: Yesterday's lowest price = the lowest value of the lowest price in 13 days and Yesterday's close = the lowest value of the ** price in 13 days.

    backset(a2 and a3,3)=3;

    If a2 and a3 are set to 1=3 for the last 3 periods

  3. Anonymous users2024-02-06

    1. The method of introducing the source code on the great wisdom:

    1.Test the formula (source code) to be imported, the method is to use the left button to turn the source code blue, then right-click and click copy;

    2.Enter the special function of the Great Wisdom ------ self-compiled indicators--- commonly used --- technical indicators--- new, in the blank space below the formula area that appears, paste the source code of the just test, copy the formula name and paste it into the formula name column--- confirm --- exit.

    3.If there are parameters, such as n 1 100 15 and so on, you need to populate such data in the parameter table.

    4.Content other than the source code of the formula, such as name, description, parameters, etc., should be deleted or enclosed with { }.

    5. Click on the name of the formula in the bottom display bar of Great Wisdom to see the formula you just imported.

    2. How to introduce RAR and EXP format indicator files:

    There was a brother who asked the couple:

    Even this reply is dropping:

    Copy the formula Open the Great Wisdom "Function" menu Self-compiled indicators New Click the right mouse button in the blank space below and select "Paste" At the top of the "Formula Name" enter "Gold Medal Dark Horse" Confirm Open the ** diagram of any ** Enter "jphm.""Enter (jphm is the pinyin of "Gold Medal Dark Horse"**) You will find that the **diagram has changed, and it's done!

    The above is the use of the original code of the formula, and the following is about it. How to use the exp format,exp is the formula module of Great Wisdom, which can only be used by Great Wisdom, and the usage is as follows:

    Open the Great Wisdom function Self-programmed indicators to introduce Select your exp file Select All OK. If it is a RAR file, you need to unzip the file, decompress it to dzh-ind-export, and then open the Great Wisdom function Self-Compiled Indicators to introduce Select your exp file Select All OK. Congratulations, you've learned.

  4. Anonymous users2024-02-05

    I'm not a master, you can learn, if you really can't, you can ask the teacher.

  5. Anonymous users2024-02-04

    Constant Honesty Loving-kindness = God loves you People love you A constant stream of wisdom and wisdom.

    From Bible Proverbs. Solomon, the wise king of ancient Israel, said, "Truth and mercy shall not be taken away from you, but it shall be hung around your neck, and engraved on the tablets of your heart." Then you will find favor and understanding in the sight of God and in the eyes of the world.

  6. Anonymous users2024-02-03

    The 25-day line crosses the 250-day line, and the monthly line crosses the annual line, and the short- and medium-term trend is still downward.

    Seven days is too short to make a trend judgment.

  7. Anonymous users2024-02-02

    It is to write the great wisdom of 90 days to first occur 7 antennas to cross the 600 line, and then 25 antennas to cross 250, and then the stock price ** only 459 or 550, to send an early warning signal is such a trend condition, but to be honest, you have many ambiguities in this condition, and this condition is not specific enough. There are a lot of places that are not clear.

    For example, the front is 7 antennas to cross 600, and after many times 25 antennas to cross 250, how to calculate this, as well as the position of **, whether there are requirements for the arrangement of **, and many other details you do not have in this condition.

  8. Anonymous users2024-02-01

    The zig function is a zigzag function: when ** changes a certain percentage from the low or high point, the turning line is drawn.

    In the above formula:

    If the price of the :* is higher than the price of the previous trading day, and the price of the previous trading day is lower than the price of the previous trading day, the turning line is drawn, and the line is blue. Because the zig function is used, the line will change with the development of **

    1) When the stock price goes from the lowest ** price to ** for more than 10 (subject to the ** price), the line is fixed and will not disappear again; (2) If the stock price does not exceed 10 from the lowest price to the lowest price, and then falls below it to a new low, the upward zigzag line drawn from this point disappears. So, the zig function can be used to summarize the historical ** pattern, but it is not possible to believe its latest buy and sell prompt. That is to say, it is 100 accurate to look at the top or bottom of history, but it cannot be used to guide trading in the middle of the process.

    With the above analysis, then the explanation of the sell formula in the formula is easy: if the current ** is lower than the previous **, and the previous ** is higher than the ** of the previous trading day, then draw a downward zigzag signal.

  9. Anonymous users2024-01-31

    There are a lot of answers to questions about this kind of website, you can check it out!

  10. Anonymous users2024-01-30

    zig is a future function, it is not recommended for the landlord to use it, otherwise the consequences will be very serious!

  11. Anonymous users2024-01-29

    I'm sorry, but I didn't use great wisdom. Hehe.

  12. Anonymous users2024-01-28

    Changed as follows: (Great wisdom passed, if it helps you, answer, thank you).

    x:=c>=,120) and ma(c,120)>=ref(ma(c,120),1);

    y:=ma(c,40)>=ref(ma(c,40),1);z:=ma(c,60)>ma(c,120);

    wr:=100*(hhv(high,10)-close)/(hhv(high,10)-llv(low,10));

    a:=wr-80;

    aa:=max(a,0);

    b:=(c/ma(c,60))-1;

    cc:=1-b;

    d:=max(aa*z,0);

    stickline(d>,0,d,1,0),coloryellow;

    e:=ma(c,2)-ma(c,10);

    f:=ma(e,2);

    stickline(e>f and y and ref(d,1)>=9,0,d+9,1,0),colorred;

    stickline(ma(c,40)>=ref(ma(c,40),1),0,1,15,0),colorlimagenta;stickline(ma(c,40)f and y and ref(d,1)>=9,0,d),coloryellow,linethick1;

    Main attack: if(e>f and y and ref(d,1)>=9,d+9,0),colorred,linethick2;

    Battle phase: if(ma(c,40)>=ref(ma(c,40),1),1,0),colorff5500,linethick1;

    Rest stage: if(ma(c,40)>=ref(ma(c,40),1),0,1),colorgreen,linethick1;

    30,colorblack;

    If you don't want to see any line, change the last value of the linethick1 function to 0).

Related questions
5 answers2024-04-30

On the day of the subscription date of the new shares, you can directly enter the subscription**, and submit the issuance** and the subscription quantity. >>>More

8 answers2024-04-30

Great Wisdom Classic Software Description:

Key features of the software: >>>More

16 answers2024-04-30

I know the situation you said Mine also has this situation Only in the free version of this problem There is no such problem in the charge I have three machines One paid 2 free 2 free 2 free are this situation The normal charge is caused by the great wisdom upgrade I called the customer service ** He told a temporary solution When you just log in to choose the server, there is a communication setting Go in Change the port inside from 6188 to 5188 OK At this time, the server is still unknown Don't pay attention to him Choose the fastest server you usually use to go in I can go in this way these days I see that the great wisdom has been upgraded today I guess it may be improving this problem don't worry, it will be fine soon.

21 answers2024-04-30

Hehe, if you take a closer look, there are instructions in it.

21 answers2024-04-30

There are two ways to add a custom formula:

The first way, source code addition, is the source code you copy on the Internet, specific operations: >>>More