Can we re-name the stocks?

can we either rename the stocks or just have them show their real names instead of the symbols?
for exmaple, i would like to see nasdaq instead of ^IXIC, or S&P instead of ^GSPC
is that possible?

Not at this time.

Similar Messages

  • How can I re-name the name the system automatically gave the new iPod I connected to my iTunes account?  It did not give me a choice, but automatically named it.

    I got a new iPod Nano for my 80-year-old father who lives with me.  I already uploaded his cds to my iTunes account, but when I connected the new iPod to my Mac to put his music on it, the program automatically named his iPod with MY name.  I want to differentiate it from my iPod Nano, but it never gave me a chance to give his iPod his name instead of mine.  He will not have an iTunes account; I will handle uploading his music and managing his iPod for him, but I need it to set up under his name, not mine.  My iPod, iPhone, iPad, etc.  all sync automatically with my entire iTunes library.  I only want to selectively upload music to his iPod.  How can I rename what iTunes is calling his iPod?   Help! -    Judy- Charleston

    Have you looked at the previous discussions listed on the right side of this page under the heading "More Like This"?

  • When downloading a file from Safari, it goes to downloads and you can't re-name the file before it is saved

    I am new to MAC and have trouble when downloading files from Safari that I want to save to a particular folder with a new name.  Can you do that without first saving to downloads, then moving the file to the documents stack, then changing the name?

    Although the right-click contect menu has "Download linked file as" and you would think that would allow you to rename the file as it is downloaded, it always gives me a useless html file.  Maybe I am misunderstanding what that menu item actually does. I long ago gave up on renaming files during download. So I'm as curious as you about whether it can be done.

  • Can anyone tell me the field name, table name for the following scenario?

    Hi All,
    Can anyone tell me the field name and the respective table name for the following scenario's?
    1. A report to list all the materials to which Invoice is done and delivery is pending.
    2. A report for Order tracking.
    3. A report, which gives PO(Purchase Order),  Pricing details.
    4. A report, which calculates the MATERIAL COST. It will select all the material issued for the entered service order number from  stock.
    Thanks & Regards,
    P.Gowrishanker
    Edited by: Gowrishanker pari on Jun 1, 2008 8:58 AM

    I believe that OmniVision Technologies has the contract for the 3gs.

  • Why can't I find the option to sort by last name?

    I see posts from some people with Android 2.2 that their phone gives the option of sorting by last name or by first name.  However, following the procedure they give, I don't see "display option".  I have seen other people who say they have the same problem on other forums, but no solutions were offered other than that it might be motoblur.  Is it motoblur?  if so, can I remove motoblur so I can sort?  Or is there another workaround?  This continues to be a major annoyance for me when I want to make a call...  Any help is appreciated.

    mjgreen66 wrote:
    I see posts from some people with Android 2.2 that their phone gives the option of sorting by last name or by first name.  However, following the procedure they give, I don't see "display option".  I have seen other people who say they have the same problem on other forums, but no solutions were offered other than that it might be motoblur.  Is it motoblur?  if so, can I remove motoblur so I can sort?  Or is there another workaround?  This continues to be a major annoyance for me when I want to make a call...  Any help is appreciated.
    A fix is to download an alternative dialer from the market.  I use Dialer One (free) which allows you  to sort by last name.
    It also shows time/date of all calls, vs the strange format used for recent calls (e.g. "6 hours ago") by the default dialer.
    You can keep both, switching back to the stock dialer if you need to.

  • How can I make the Stock Market Panel load AFTER the User Enters correct password?

    Can someone PLEASE help me. I need the Second part of this code(the Stock Market Panel) to be display after the user enters the correct username and password I have predefine. I really need to complete this project for school, Last Semester and i want to finally graduate!
    <?xml version="1.0"?>
    <mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                                     xmlns:mx="library://ns.adobe.com/flex/mx"
                                     xmlns:s="library://ns.adobe.com/flex/spark">
              <fx:Script>
                        <![CDATA[
                                  import mx.controls.Alert;
                                  public var u:String;
                                  public var p:String;
                                  public function log():void
                                            u=user.text.toLowerCase();
                                            p=pass.text.toLowerCase();
                                            if((u==''||u!='webmultimedia')||(p==''||p!='abc'))
                                                      Alert.show('Wrong userid or Password','Sorry',Alert.OK | Alert.CANCEL);
                                            else
                                                      Alert.show('Hi','Welcome',mx.controls.Alert.OK);
                                  public function clear():void
                                            user.text='';
                                            pass.text='';
                        ]]>
              </fx:Script>
              <mx:Panel id="NewForm" title="Please Log In" height="214" width="285" horizontalAlign="center" verticalAlign="middle" horizontalCenter="23" verticalCenter="2">
                        <mx:Label id="User Name" text="User Name"/> 
                        <mx:TextInput id="user" />
                        <mx:Label id="password" text="Password"/>
                        <mx:TextInput id="pass" displayAsPassword="true"/>   
                        <mx:Button id="submit" label="Submit" click="log()"/>
              </mx:Panel>
              <mx:Panel width="349" height="383" chromeColor="#1B8905" color="#FFFFFF" focusColor="#0F3CFF"
                                    fontFamily="Georgia" fontSize="21" fontWeight="bold" paddingBottom="10"
                                    paddingLeft="10" paddingRight="10" paddingTop="10" title="Stock Market">
                        <!--First Pane Of TabNavigator-->
                        <mx:TabNavigator borderStyle="solid">
                                  <mx:VBox y="71" width="371" height="334" label="Dow Jones"
                                                       chromeColor="#0A741C">
                                            <mx:Image id="loader1" source="http://dl.dropbox.com/u/8861424/stock1.png"/>
                                            <mx:RichTextEditor id="myRTE" width="355" height="286" borderVisible="true"
                                                                                       color="#000000" text="Enter Stock Comment"/>
                                  </mx:VBox>
                                  <!-- Second pane of TabNavigator -->
                                  <mx:VBox label="SandP" width="500" height="350">
                                            <mx:Image id="loader2" source="http://dl.dropbox.com/u/8861424/Untitled.png"/>
                                            <mx:RichTextEditor id="myRTE2" width="355" height="286" borderVisible="true"
                                                                                       color="#000000" text="Enter Stock Comment"/>
                                  </mx:VBox>
                                  <!-- Second pane of TabNavigator -->
                                  <mx:VBox label="Nasdaq" width="500" height="350">
                                            <mx:Image id="loader3" source="http://dl.dropbox.com/u/8861424/stock2.png"/>
                                            <mx:RichTextEditor id="myRTE3" width="355" height="286" borderVisible="true"
                                                                                       color="#000000" text="Enter Stock Comment"/>
                                  </mx:VBox>
                        </mx:TabNavigator>
              </mx:Panel> 
    </mx:Application>

    it's probably not the correct way to do it but I am more familiar with Flex4 (which use states) but this works
    however i had to remove your Alert they were throwing an error
    <mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                                            xmlns:mx="library://ns.adobe.com/flex/mx"
                                            xmlns:s="library://ns.adobe.com/flex/spark">
              <fx:Script>
                        <![CDATA[
                                  import mx.controls.Alert;
                                  public var u:String;
                                  public var p:String;
                                  public function log():void
                                            u = user.text.toLowerCase();
                                            p = pass.text.toLowerCase();
                                            if ((u == '' || u != 'webmultimedia') || (p == '' || p != 'abc'))
                                                      //Alert.show('Wrong userid or Password', 'Sorry', Alert.OK | Alert.CANCEL);
                                            else
                                                      //Alert.show('Hi', 'Welcome', mx.controls.Alert.OK);
                                                      stockMarket.visible = true;
                                                      NewForm.visible = false;
                                  public function clear():void
                                            user.text = '';
                                            pass.text = '';
                        ]]>
              </fx:Script>
              <mx:Panel id="NewForm"
                                    title="Please Log In"
                                    height="214"
                                    width="285"
                                    horizontalAlign="center"
                                    verticalAlign="middle"
                                    horizontalCenter="23"
                                    verticalCenter="2">
                        <mx:Label id="UserName"
                                              text="User Name" />
                        <mx:TextInput id="user" />
                        <mx:Label id="password"
                                              text="Password" />
                        <mx:TextInput id="pass"
                                                        displayAsPassword="true" />
                        <mx:Button id="submit"
                                               label="Submit"
                                               click="log()" />
              </mx:Panel>
              <mx:Panel id="stockMarket"
                                    visible="false"
                                    width="349"
                                    height="383"
                                    chromeColor="#1B8905"
                                    color="#FFFFFF"
                                    focusColor="#0F3CFF"
                                    fontFamily="Georgia"
                                    fontSize="21"
                                    fontWeight="bold"
                                    paddingBottom="10"
                                    paddingLeft="10"
                                    paddingRight="10"
                                    paddingTop="10"
                                    title="Stock Market">
                        <!--First Pane Of TabNavigator-->
                        <mx:TabNavigator borderStyle="solid">
                                  <mx:VBox y="71"
                                                       width="371"
                                                       height="334"
                                                       label="Dow Jones"
                                                       chromeColor="#0A741C">
                                            <mx:Image id="loader1"
                                                                  source="http://dl.dropbox.com/u/8861424/stock1.png" />
                                            <mx:RichTextEditor id="myRTE"
                                                                                       width="355"
                                                                                       height="286"
                                                                                       borderVisible="true"
                                                                                       color="#000000"
                                                                                       text="Enter Stock Comment" />
                                  </mx:VBox>
                                  <!-- Second pane of TabNavigator -->
                                  <mx:VBox label="SandP"
                                                       width="500"
                                                       height="350">
                                            <mx:Image id="loader2"
                                                                  source="http://dl.dropbox.com/u/8861424/Untitled.png" />
                                            <mx:RichTextEditor id="myRTE2"
                                                                                       width="355"
                                                                                       height="286"
                                                                                       borderVisible="true"
                                                                                       color="#000000"
                                                                                       text="Enter Stock Comment" />
                                  </mx:VBox>
                                  <!-- Second pane of TabNavigator -->
                                  <mx:VBox label="Nasdaq"
                                                       width="500"
                                                       height="350">
                                            <mx:Image id="loader3"
                                                                  source="http://dl.dropbox.com/u/8861424/stock2.png" />
                                            <mx:RichTextEditor id="myRTE3"
                                                                                       width="355"
                                                                                       height="286"
                                                                                       borderVisible="true"
                                                                                       color="#000000"
                                                                                       text="Enter Stock Comment" />
                                  </mx:VBox>
                        </mx:TabNavigator>
              </mx:Panel>
    </mx:Application>

  • Can not find stock index in the stock app

    I tried to find stock index like BZH15.NYM in the stock app, but search reterns nothing.
    Can anyone help?

    Read this:
    http://help.apple.com/iphone/8/#/iph1ac0b1bc
    Try searching using company's name

  • How can i name the spool

    hi all,
    In the trx SP01, how can i name the spool as per my naming conventions.
    I am running a report in background and want the spool name to name of the PLANT.
    Please let me know.
    Chandan

    Hi,
    Follow the link for details.
    http://help.sap.com/saphelp_nw04/helpdata/en/fc/16c1a8dc4911d299970000e83dd9fc/frameset.htm
    Regards
    Rajesh Kumar

  • How can you find out if another VI running on the same computer and how can you find out the name of that VI?

    Suppose that several VIs running simultaneously on the same computer. How can I find out the names of the running VIs, from another VI?
    If the already running VIs are clones of the same basic VI, open and run with the option "Prepare to call and forget", how can I find out the names and index of each clone? 

    I had an application where I spawned (= ran with Start Asynchronous Call) multiple (reentrant) copies of VIs, and would occasionally "lose control" of them.  I needed a way to find all VIs that were running "Top Level" and stop them (so I didn't have to log off from Windows).
    I used the Application Property "All VIs in Memory" to get an array of (wait for it ...) All VIs in Memory.  I took each name, opened a VI reference to it (simply wire the name string in, as the VI is, by definition, "in memory"), looked at its VI Execution State, and if it was Run Top Level, Invoked the FP.Close and Abort VI Methods.  [To prevent the VI that did all this from "committing Suicide", I compared the name string with the current Call Chain, and did nothing if there was a match].
    I think you could adopt this idea to do what you need.
    BS

  • Can two bands use the same name on iTunes?

    Hi, I'm in a band that uses the same name as another band listed on iTunes.
    Can two bands with the same name be listed on iTunes? We hope to eventually have an album for sale on the site and I'd like to know now if it's going to be a problem.

    Of course it will be a problem. You simply can not have two bands with the same name. I can think of MANY bands that had to change their names (either completely or just for certain countries) because the name was already taken. Blink (Blink-182), Bush (Bush X), The Beat (The English Beat), Yazoo (Yaz), and the list goes on and on.
    Your band better start brain storming for a new or modified name.
    Patrick

  • My friend bought an ipad mini and gave me his old iPad. how can i re-register the iPad in my name so that i can sync it with my macbook air?

    My friend bought an ipad mini and gave me his old iPad. how can i re-register the iPad in my name so that i can sync it with my macbook air?

    Setup as new
    Settings>General>Reset>Erase all content and settings

  • Why can I NOT name a Reminder List the exact same thing as a Calendar?

    Remember the good old days when ToDo Lists where automatically related to a specific calendar?  I want that back.  Why can I not name a Reminder List and a Calendar with identical titles?  Why do I have to create a calendar named "Blue Project" and then create a Reminder List and name it "Blue Project 2" or some other iteration?  This is totally asinine.

    "You can look at the Classic Theme Restorer extension to restore some functionality that was lost with the arrival of the Australis style in Firefox 29."
    Precisely. How is "loss of functionality" progress or an upgrade? Why should I have to install an extension just to get a "reload" button? What a pile of crap. Why not have a "Use shit interface" tickbox in the Options dialogue so people can choose if they want their version of Firefox to have pants functionality?

  • System Informatio​n - Can Labview tell me the Computer Name/Hardw​are/System Performanc​e

    Hi there,
    Can labview look at the Computer that the program is running on and tell me the system infomation??
    Like, computer name, System performance etc.
    I have it looking at the hard drives and sending me an e-mail to say when they get full.
    But it would be nice to include some system information so i can try to keep track of its health as well.#
    Any ideas??
    Pete

    Do a google search for environment variables inside windows.
    Here is one website.
    http://vlaurie.com/computers2/Articles/environment​.htm
    I also downloaded this file recently from the NI site.
    Attachments:
    windows info.zip ‏829 KB

  • Opening a new file in photoshopcc and the file name is displayed but no white working canvas. you can see it as a layer in the layers panel and if i draw on the grey area i can see int on the layer but not on the main screen.

    opening a new file in photoshop cc and the file name is displayed but no white working canvas. you can see it as a layer in the layers panel and if i draw on the grey area i can see int on the layer but not on the main screen.

    Graphics card is the problem.
    Trying to update drivers now.
    Thanks for your help
    john

  • To test how can we use the opt  'logical file name' to name the file based

    Hi Sir/Madam,
               to test how can we use the opt  'logical file name' to name the file based on the selection made in the dtp run for extracting data as flat file.

    Hi Vishali,
    In the DTP select the file location as application server and give the logical file path. The actual file and logical path can be created using transaction "FILE" and "AL11".
    Rest of the process is same as that of extraction from local file.
    Regards,
    Durgesh.

Maybe you are looking for

  • Songs will not sync to my iPhone

    So earlier this week I got a few songs from my sister over email, and was able to put them into my itunes. This worked perfectly...They played on my laptop and everything... until i tried to then get the songs from my itunes on my macbook to my iphon

  • How to set up immediate calculation when using fields

    Hello, forgive me for the apparently dull question (I assume it is so as I was unable to find answer for it on the forum). I am making a fillable PDF form with Acrobat Pro 9 and I have this page with simple invoice that looks like this: item_price_1

  • Need help on storing persistance records in J2EE JSP application

    Hi, I want to store a hashtable of info with about five attributes (id, name, username, date) in a persistent state in JSP order to not always call the database. I am either going to use session or request objects. My question is if it's a good idea

  • I want to keep a Pop Up Menu blank when not used?

    I've got a spread sheet that in several cells that I have a Pop Up Menu assigned and the first menu shows up in the cell in all of the cells for the Pop Up Menu. What I'd like to have is to keep those cells blank with no text or anything unless I cli

  • Timesheet Application And PDF Printing

    Hi, I demo'd the time sheet application from the apex server and the management team here really liked it so I moved to our machine here and when i try the pdf printing i get the following error Not Found The requested URL /dev/apex/f was not found o