Jump to content

Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.

9146894me

Members
  • Content Count

    24
  • Joined

  • Last visited

Personal Information

  • First Name
    Randy
  • Last Name
    Hutchinson
  • City
    Amarillo
  • Country
    United States
  • Gender
    Male
  • Occupation
    Realtor
  • Interests
    Reef Aquariums,

Trading Information

  • Vendor
    No
  • Favorite Markets
    NQ
  • Trading Years
    3
  • Trading Platform
    Tradestation
  • Broker
    Tradestation
  1. I can't get it to verify. Can you upload a ELD. Can you upload a picture of the indicator plotted.?
  2. inputs: Sensitivity(2), ShowDots(true), ShowLines(false), Displace(0); vars: var1(0), var2(0), var3(0), var4(0); if Raz_rangevector_os = 1 then Begin ; var4 = Sensitivity*10 ; var2 = RAZWEMA_os (HIGH, var4) ; var3 = RAZWEMA_os (LOW, var4) ; if Displace >= 0 OR CurrentBar > AbsValue (Displace) then PLOT1[Displace] (var2, "BuyStop") ; if HIGH < var2 And var2[1] >= var2[2] And var2 < var2[1] then Begin ALERT ("Confirm down") ; End ELSE Begin if Displace >= 0 OR CurrentBar > AbsValue (Displace) then Begin PLOT2[Displace] (var3, "SellStop") ; if var3[1] <= var3[2] And LOW > var3 And var3 > var3[1] then ALERT ("Confirm Up") ; End ; End ; if (var3 < var3[1]) then SETPLOTCOLOR (2, GetBackGroundColor) ; if (var2 > var2[1]) then SETPLOTCOLOR (1, GetBackGroundColor) ; if ShowDots = TRUE then Begin if HIGH < var2 And var2[1] >= var2[2] And var2 < var2[1] then PLOT3[1] (var2, "Confirm_Dn") ELSE NOPLOT (3) ; if LOW > var3 And var3[1] <= var3[2] And var3 > var3[1] then PLOT4[1] (var3, "Confirm_Up") ELSE NOPLOT (4) ; End ; if ShowLines then Begin if Displace >= 0 OR CurrentBar > AbsValue (Displace) then PLOT5[Displace] (var2, "BuyLine") ; if (var2 > var2[1]) then SETPLOTCOLOR (5, GetBackGroundColor) ; if Displace >= 0 OR CurrentBar > AbsValue (Displace) then PLOT6[Displace] (var3, "SellLine") ; if (var3 < var3[1]) then SETPLOTCOLOR (6, GetBackGroundColor) ; End ; End ; [code [LegacyColorValue = true]; Inputs: SEMA(23), LEMA(50); Vars: SMA(0), LMA(0); {Moving Averages} SMA=RAZEMA(C,SEMA); LMA=RAZEMA(C,LEMA); {Plots} Plot1(SMA,"SMA"); Plot2(LMA,"LMA"); ][/code]
  3. I guess it just no as simple as I think. I have a EMA fast and slow SMA and LMA. When the SMA is below the LMA i want to sell the plot of the Short Parabolic stop and continue to do so (ignoring the buys of the stop until the SMA, LMA changes) Going the other way if the SMA is above the LMA i want to buy the long stops and out at the stop plotting the other way... but continuing to buy and sell the direction until the SMA and LMA change and crossover. _____________________________________ {RAZ EMA} [LegacyColorValue = true]; Inputs: SEMA(23), LEMA(50); Vars: SMA(0), LMA(0); {Moving Averages} SMA=RAZEMA(C,SEMA); LMA=RAZEMA(C,LEMA); {Plots} Plot1(SMA,"SMA"); Plot2(LMA,"LMA");
  4. Can someone convert this indicator to a buy/sell strategy (buy lostop sell short stop) always in the market. inputs: Sensitivity(2), ShowDots(true), ShowLines(false), Displace(0); vars: var1(0), var2(0), var3(0), var4(0); if Raz_rangevector_os = 1 then Begin ; var4 = Sensitivity*10 ; var2 = RAZWEMA_os (HIGH, var4) ; var3 = RAZWEMA_os (LOW, var4) ; if Displace >= 0 OR CurrentBar > AbsValue (Displace) then PLOT1[Displace] (var2, "BuyStop") ; if HIGH < var2 And var2[1] >= var2[2] And var2 < var2[1] then Begin ALERT ("Confirm down") ; End ELSE Begin if Displace >= 0 OR CurrentBar > AbsValue (Displace) then Begin PLOT2[Displace] (var3, "SellStop") ; if var3[1] <= var3[2] And LOW > var3 And var3 > var3[1] then ALERT ("Confirm Up") ; End ; End ; if (var3 < var3[1]) then SETPLOTCOLOR (2, GetBackGroundColor) ; if (var2 > var2[1]) then SETPLOTCOLOR (1, GetBackGroundColor) ; if ShowDots = TRUE then Begin if HIGH < var2 And var2[1] >= var2[2] And var2 < var2[1] then PLOT3[1] (var2, "Confirm_Dn") ELSE NOPLOT (3) ; if LOW > var3 And var3[1] <= var3[2] And var3 > var3[1] then PLOT4[1] (var3, "Confirm_Up") ELSE NOPLOT (4) ; End ; if ShowLines then Begin if Displace >= 0 OR CurrentBar > AbsValue (Displace) then PLOT5[Displace] (var2, "BuyLine") ; if (var2 > var2[1]) then SETPLOTCOLOR (5, GetBackGroundColor) ; if Displace >= 0 OR CurrentBar > AbsValue (Displace) then PLOT6[Displace] (var3, "SellLine") ; if (var3 < var3[1]) then SETPLOTCOLOR (6, GetBackGroundColor) ; End ; End ;
  5. Close of 5 bars back is what I was thinking. If you reccomend something else I am open to it. Thanks, Randy
  6. Hi, I am unable to do Easylanguage yet. If anyone could help me? I have a CCI and would like a strategy that would buy when CCI crosses over zero and sell when CCI crosses under the zero line. I want to be able to input two targets and a initial stop placement and to trail the stop when the first target is hit using an ATR stop or a dtop of 5 bars back. Thanks, Randy
  7. I found this website that has an indicator that plots the reversal bars and looks at engulfmants which form a ABC type of formation Trading Alchemy, Unleash the Power of TradeStation
  8. I can find Pivot A and Pivot B then I want Pivot C to less than Pivot A and enter on the reversal bar. So maybe a showme that plots a dot above or below depaening on direction every reversal bar that happens to see it better so would I need a higher high and a equal or lower close than the previous bar to plot? Maybe something is already offer that will plot this. I know there will be tons of plots but I can filter most out by the C pivot to be equal or less than the A pivot. So A would be confirmed and B would be confirmed then I would look for the c pivot and watch the reversal bars plot from that point on.
  9. I can find Pivot A and Pivot B then I want Pivot C to less than Pivot A and enter on the reversal bar. So maybe a showme that plots a dot above or below depaening on direction every reversal bar that happens to see it better so would I need a higher high and a equal or lower close than the previous bar to plot? Maybe something is already offer that will plot this. I know there will be tons of plots but I can filter most out by the C pivot to be equal or less than the A pivot. So A would be confirmed and B would be confirmed then I would look for the c pivot and watch the reversal bars plot from that point on.
  10. My Easylanguage skills zero... Description: Looking for pivot bar reversal. 1. Plot paint bars that close at the high or the low of the bar minimum is 2 in a row closed at their high or low. (maybe this could be a user input to select how many ars must close in a row to begin) (choose up color and choose down color) 2. Paint bar that makes a higher high and closes lower than previouse bar and the opposite for other direction. (choose color for that bar) 3. place a buy or sell dot on the bar if it closes less than the high of the previous bar for a sell showme and low of the previous bar for a buy show me --------------------------------------- Indicator that will count previous show me plots and count 3 back (pivots described above) and look for let's say the first one ploted is P1, the second is P2 and the 3rd is P3. If this condition is met P3 is less than P1 sell for a short or place a bigger show me above the bar. and for a long if P3 is higher or greater than P1 go long or place a bigger Show me below that bar. Example to follow
  11. I put The MA Ribbon into the Omega Research Power Editior and it wont verify. Two errors please see the attached file. Any help thanks.
  12. I can only open ELA files no the ELD files. MAybe you canpost the text of the ELD?
  13. Anyone have the ELA file for this?
  14. Thanks for the Paintbar help. I plotted it and see it needs a little cleaning up. I added comments to 2 pictures and hopfully hte visual will help. I have lines crossing. I would like a paint bar to plot when there is a close Above the upper line which ever line that may be since they cross each other at times and NOT plot again until there is a close below the lower line and a paintbar plot. Thanks
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.