NexusFi: Find Your Edge


Home Menu

 





what's wrong with my code???


Discussion in ThinkOrSwim

Updated
    1. trending_up 1,677 views
    2. thumb_up 0 thanks given
    3. group 2 followers
    1. forum 3 posts
    2. attach_file 0 attachments




 
Search this Thread

what's wrong with my code???

  #1 (permalink)
zoudaodi
chengdu China
 
Posts: 3 since Nov 2012
Thanks Given: 0
Thanks Received: 0

i wanna bulit a custom scan that simplemoving 5 =10=20

def ma20=simplemoving(close ,20);
def ma5=simplemoving(close ,5);
def ma10=simplemoving(close,10);
plot scan= ma20=ma and ma5=ma10


but always show wrong ?

anybody can tell me how to fix it .thanks

Reply With Quote

Can you help answer these questions
from other members on NexusFi?
REcommedations for programming help
Sierra Chart
PowerLanguage & EasyLanguage. How to get the platfor …
EasyLanguage Programming
Trade idea based off three indicators.
Traders Hideout
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
How to apply profiles
Traders Hideout
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Spoo-nalysis ES e-mini futures S&P 500
29 thanks
Just another trading journal: PA, Wyckoff & Trends
25 thanks
Tao te Trade: way of the WLD
24 thanks
Bigger Wins or Fewer Losses?
21 thanks
GFIs1 1 DAX trade per day journal
16 thanks
  #2 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,433 since Apr 2013
Thanks Given: 481
Thanks Received: 1,627

zoudaodi,

what are you trying to scan for exactly and what is "ma" in your code?

Regards,
ABCTG

Follow me on Twitter Reply With Quote
  #3 (permalink)
zoudaodi
chengdu China
 
Posts: 3 since Nov 2012
Thanks Given: 0
Thanks Received: 0



ABCTG View Post
zoudaodi,

what are you trying to scan for exactly and what is "ma" in your code?

Regards,
ABCTG

i wanna scan stock that it's simplemovingavage 5.10.20 at same price.
three movingavage..

Reply With Quote
  #4 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,433 since Apr 2013
Thanks Given: 481
Thanks Received: 1,627

This code should get you going. It will return +1 if all averages are at the same price and 0 if they are not.
However I believe you are checking for a very rare case, because the values would have to be the same up to the last decimal space. You are probably better off checking for the averages being the same or very close to each other.

 
Code
def ma20 = average(close ,20);
def ma5 = average(close ,5);
def ma10 = average(close,10);

plot scan = If(ma20 == ma5 and ma5 == ma10 , 1, 0);
Regards,
ABCTG

Follow me on Twitter Reply With Quote




Last Updated on March 5, 2014


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top
no new posts