To: TATRADER who wrote (9396 ) 6/6/1999 8:40:00 PM From: NW_Trader Respond to of 59879
Mark, Collin and any other WOW users - Good set of rules - believe I previously recommended Trading the Plan by Robert Deel, good for risk and money management. Here's a cut at the puzzler you sent me - didn't rain so took me longer <GG>. Think I like fibs better, but haven't really tested this yet. Think I've got the bugs out, but have only looked at a few charts with the lines added. Some thoughts on usage. Want to refine this to draw trend lines for next day, but haven't found time to figure if WOW can do this. And unfortunately in WOW, one can't specify consistent colors (like red for supports, green for resistance, etc), just whether the indicator will be a line, dots, dashes, etc. and then what the color of the first of a series of indicators will be - the rest are preordered (green always follows red, etc.) Plot each of these as an individual line within a named indicator (I've named mine PP w/ S & R (+1) - short for pivot points with support and resistance displaced forward 1 day). A work around for the color would be to select the colors for each line and then save the chart as a template. Another suggestion would be to have multiple indicators for each line or pairs (like pair S1 and R1) in one indicator. Anyway good luck all. Here's the coding. Each group should be added as a individual formula line and you may select the line type you like. You may and WOW will ignore anything within { }, but it is helpful to keep programing notes. { P = } ref((H+L+C)/3,-1) { R1 = (2*P) - L = } 2*ref((H+L+C)/3,-1) - ref(L,-1) { S1 = (2*P) - H = } 2*ref((H+L+C)/3,-1) - ref(H,-1) { R2 = (P - S1) + R1 = } ( (ref((H+L+C)/3,-1)) - (2*ref(((H+L+C)/3),-1) - ref(H,-1)) ) + (2*ref(((H+L+C)/3),-1) - ref(L,-1) ) { S2 = P - (R1 - S1) = } ref((H+L+C)/3,-1) - ( (2*ref(((H+L+C)/3),-1) - ref(L,-1)) - (2*ref(((H+L+C)/3),-1) - ref(H,-1)) ) You can try to cut and paste this to WOW, but if you get syntax errors, look for any "bent arrow" symbols at the end of lines and replace with carriage returns. Peace and Justice --- Patrick