• Solutions
    • FERC XBRL Reporting
    • FDTA Financial Reporting
    • SEC Compliance
    • Windows Clipboard Management
    • Legato Scripting
  • Products
    • GoFiler Suite
    • XBRLworks
    • SEC Exhibit Explorer
    • SEC Extractor
    • Clipboard Scout
    • Legato
  • Education
    • Training
    • SEC and EDGAR Compliance
    • Legato Developers
  • Blog
  • Support
  • Skip to blog entries
  • Skip to archive page
  • Skip to right sidebar

Friday, October 04. 2019

LDC #155: Automatically Locking Projects

When submitting a filing to the SEC you want everything about this filing to be checked, double checked, or even triple checked before submitting a live filing. If you are not 100% careful mistakes can happen. Just like elsewhere in life, following a set list of tasks for every filing can end up making life easier and allow you to ensure that mistakes are minimized as much as possible. Luckily there is a task list feature in GoFiler that we can access through Legato. This means that we can take steps to ensure that the same process gets followed every time that a filing gets created.


Continue reading "LDC #155: Automatically Locking Projects" »
Posted by
Joshua Kwiatkowski
in Development at 16:14

Friday, September 06. 2019

LDC #151: Exiting the Application

In Legato you can make all sorts of different scripts that do many different tasks. A majority of these tasks come while you are working inside of GoFiler or another application, and when these are finished you simply return out of the script and the application continues on as normal. Sometimes, however, you are performing a task that must end with finality. In this case you can exit the program that is running your script. Today we are going to look at the ways in which you can accomplish this, how they are different, and times in which you would use each.

Continue reading "LDC #151: Exiting the Application" »
Posted by
Joshua Kwiatkowski
in Development at 17:32

Friday, August 09. 2019

LDC #147: A Look Back in Time

We started this blog in September of 2016, releasing one article a week (with only a few exceptions) for a total of 147 articles over 151 weeks, each article illustrating various features of the Legato scripting language. With so many articles available to reference I thought I would take the time this week to put together a picture of where we have been in a way that will make it easy to find previous topics that have been covered. This way no matter whether you have been a faithful reader since the beginning or if you have only found us recently you can have a place to easily find where and when we have covered a topic. This is by no means a comprehensive list, but intended to be a resource to find if we have covered a topic you may have questions about.

Continue reading "LDC #147: A Look Back in Time" »
Posted by
Joshua Kwiatkowski
in Development at 17:45

Friday, July 12. 2019

LDC #143: Table Mapping Tools

Working with text inside of tables when looking at HTML code can sometimes be a daunting task. Looking at rows of code that are rows and columns can be difficult, especially when trying to write a script to read text from within a table. Keeping track of what row and cell you are in sometimes can feel like an entire script in itself. Luckily for us we have a number of functions in Legato that can allow us to read data from a table as though we were looking at a spreadsheet. This means that we can focus on developing tools to focus on aggregating the data itself rather than reinventing the wheel every time that we want to retrieve data from a table.

Continue reading "LDC #143: Table Mapping Tools" »
Posted by
Joshua Kwiatkowski
in Development at 15:51

Friday, June 21. 2019

LDC #140: Using Legato to Ease the Creation of 8-K Cover Pages: Part 2

This week we are going to move forward with our creation of a tool to allow us to fill out a Form 8-K cover page. Last blog we started our process by creating a script that showed how to use the HTML templates to create a custom template that runs a Legato script. This week we are going to expand on that concept, redesigning the script to be able to work with multiple form types and adding in the ability to add expandable lists into each form.

Continue reading "LDC #140: Using Legato to Ease the Creation of..." »
Posted by
Joshua Kwiatkowski
in Development at 16:07

Friday, May 31. 2019

LDC #138: Using Legato to Ease the Creation of 8-K Cover Pages

The SEC recently updated the requirements for what information should be included on a number of the cover pages for their forms. GoFiler already has templates for a lot of common forms like the 8-K, 10-Q, and 10-K, but I had an idea that would eventually make creating these cover pages even easier than they already are by putting the power of Legato to work. The current templates simply create a blank cover page with empty areas to enter data in the Page View edit window. My script will prompt the user to provide the information in a simple form when they create the document and automatically place that data on the cover page.

Continue reading "LDC #138: Using Legato to Ease the Creation of..." »
Posted by
Joshua Kwiatkowski
in Development at 17:01

Friday, May 17. 2019

LDC #136: Using Legato to Automate Document Conversion

One of the most important features of GoFiler is the ability to take Microsoft Office documents and turn them into EDGAR compliant documents that can be filed to the SEC. While conversion is easy to do manually in GoFiler, there is a function in Legato that can add a crucial step into an automated set of steps that can help make setting up filings a breeze. Today I will go in-depth on this function: ConvertFile.

Continue reading "LDC #136: Using Legato to Automate Document..." »
Posted by
Joshua Kwiatkowski
in Development at 17:12

Friday, April 12. 2019

LDC #131: Building a Section 16 Data Scraper, Part 4: Dialog

It’s time to finish up our full script for our Section 16 data scraper. In the first three parts of this series we completed a base script that would go out to the SEC’s website, download all of the filings from a particular CIK, cache all of the Section 16 filings, find all of the reported transactions, put those transactions into a CSV file, and then read all of those transactions and figure out which of those transactions are current holdings. This week we are going to finish up by creating a dialog and adding our script functionality into the dialog.


Continue reading "LDC #131: Building a Section 16 Data Scraper,..." »
Posted by
Joshua Kwiatkowski
in Development at 17:47

Friday, March 29. 2019

LDC #129: Building a Section 16 Data Scraper, Part 3: Analysis

It’s time to finish up our base script for our Section 16 data scraper. In the first two parts of this series we started a script that would go out to the SEC’s website, download all of the filings from a particular CIK, cache all of the Section 16 filings, find all of the reported transactions, and put those transactions into a CSV file. This week we are going to finish up the base functionality by reading through all of the transactions and finding the current holdings. Additionally we are going to perform a large amount of refactoring as well as add in the functionality to look at reported holdings.


Continue reading "LDC #129: Building a Section 16 Data Scraper,..." »
Posted by
Joshua Kwiatkowski
in Development at 17:25

Friday, February 08. 2019

LDC #122: Building a Section 16 Data Scraper, Part 2: Aggregation

A few weeks ago we started building a Section 16 Data Scraper with the intention of a user being able to enter a CIK and Legato downloading all of the CIK’s Section 16 filings, putting the data together into a spreadsheet, and then being able to start a Section 16 filing by using that data as an entry point. At the end of the last post we had a script that would go out and download all of a singular CIK’s filings. It would also cache any filings it saw so that we were only downloading each individual filing once. This week we are going to continue onward and code a system to scrape useful data out of the filings and put it together into a CSV file.

Continue reading "LDC #122: Building a Section 16 Data Scraper,..." »
Posted by
Joshua Kwiatkowski
in Development at 17:47

Friday, January 04. 2019

LDC #117: Building a Section 16 Data Scraper, Part 1: Collection

If you are not familiar with the term Section 16, Section 16 is a section of the Securities Exchange Act of 1934. In fact, it is section 16 of the act. Section 16 is a way to attempt to mitigate insider trading at companies. It states that any person who is a director of the company, an officer of the company, or a 10% or more beneficial owner, directly or indirectly, they must file Forms 3, 4, and 5. These forms report the level of equity interests whenever a significant change occurs. The terms that you will see referenced here are reporting owner, who is the person of interest here, and issuer, who is the company that in which the reporting owner has equity.


Continue reading "LDC #117: Building a Section 16 Data Scraper,..." »
Posted by
Joshua Kwiatkowski
in Development at 17:37

Friday, November 16. 2018

LDC #111: Back To The Log

About a year ago I wrote a blog with the basics of how logs work with GoFiler and Legato. At the end I mentioned that in a future blog post we would talk more about what you can do with log objects. Today we are going to do just that. This blog assumes that you have read the previous blog and understand the basics of the log object.


Continue reading "LDC #111: Back To The Log" »
Posted by
Joshua Kwiatkowski
in Development at 14:28

Friday, October 19. 2018

LDC #107: All Our Filings In a Row

If you are anything like me, you may like looking in the past to see where you have been, which will hopefully allow you to figure out where you are going in the future. The more that I immerse myself in programming, the more documentation that I end up creating, just in order to know where I have been and what I have done before. As I program, I like to create documentation as I go along. It makes the process easier in the long run. Sometimes, however, I find myself having to pick up a project and having to create documentation from the start. It would be easier if someone had been keeping records all along, but if I have to know where I’ve been, I need to go through the whole process from the beginning.


Continue reading "LDC #107: All Our Filings In a Row" »
Posted by
Joshua Kwiatkowski
in Development at 17:04

Friday, September 28. 2018

LDC #104: Copy All the Things - An Example of Recursion

This week I want to go over a short script that I’ve written recently in order to help automate some of the tasks I have picked up around the office. Some of these tasks involve moving around files and folders on the network. I got tired of manually copying and pasting folders, so I wrote a script to help make moving large amounts of files and folders easier. There’s plenty of ways that this script could be made more in-depth, but this is a practical example of a way to make your life a little bit easier.


Continue reading "LDC #104: Copy All the Things - An Example of..." »
Posted by
Joshua Kwiatkowski
in Development at 17:52

Friday, August 17. 2018

LDC #98: Conditionals, If You Want Me To

Language directives allow you to change the code the programming language sees when it runs. We’ve talked a little bit about directives before, but today I will take a look at a subset of directives: conditionals. Conditionals allow a programmer to add or remove sections of code based on the existence of other directives. This means that it’s easy to build larger suites of code while allowing sections of code to be taken out without causing errors during runtime.


Continue reading "LDC #98: Conditionals, If You Want Me To" »
Posted by
Joshua Kwiatkowski
in Development at 17:40
(Page 1 of 2, totaling 30 entries) next page »

Quicksearch

Categories

  • XML Accounting
  • XML AICPA News
  • XML FASB News
  • XML GASB News
  • XML IASB News
  • XML Development
  • XML Events
  • XML FERC
  • XML eForms News
  • XML FERC Filing Help
  • XML Filing Technology
  • XML Information Technology
  • XML Investor Education
  • XML MSRB
  • XML EMMA News
  • XML FDTA
  • XML MSRB Filing Help
  • XML Novaworks News
  • XML GoFiler Online Updates
  • XML GoFiler Updates
  • XML XBRLworks Updates
  • XML SEC
  • XML Corporation Finance
  • XML DERA
  • XML EDGAR News
  • XML Investment Management
  • XML SEC Filing Help
  • XML XBRL
  • XML Data Quality Committee
  • XML GRIP Taxonomy
  • XML IFRS Taxonomy
  • XML US GAAP Taxonomy

Calendar

Back May '25 Forward
Mo Tu We Th Fr Sa Su
Thursday, May 15. 2025
      1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31  

Feeds

  • XML
Sign Up Now
Get SEC news articles and blog posts delivered monthly to your inbox!
Based on the s9y Bulletproof template framework

Compliance

  • FERC
  • EDGAR
  • EMMA

Software

  • GoFiler Suite
  • SEC Exhibit Explorer
  • SEC Extractor
  • XBRLworks
  • Legato Scripting

Company

  • About Novaworks
  • News
  • Site Map
  • Support

Follow Us:

  • LinkedIn
  • YouTube
  • RSS
  • Newsletter
  • © 2024 Novaworks, LLC
  • Privacy
  • Terms of Use
  • Trademarks and Patents
  • Contact Us